UNPKG

490 BPlain TextView Raw
1"use strict";
2
3/* tslint:disable:no-unused-expression */
4// https://github.com/palantir/tslint/issues/2614
5
6import chai = require("chai");
7import "mocha";
8import { SocketConfig } from "../src/socketconfig";
9const expect = chai.expect;
10
11describe("SocketConfig class", function () {
12 this.slow(1000);
13
14 describe("#.getPOSTData", () => {
15 it("check return value [no settings made]", () => {
16 const d = new SocketConfig().getPOSTData();
17 expect(d).to.be.empty;
18 });
19 });
20});