-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.test.js
72 lines (65 loc) · 1.79 KB
/
index.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* eslint-disable max-lines-per-function */
const nock = require("nock"),
typetalk = require("./index.js"),
{expect} = require("chai");
describe("gulp-typetalk", () => {
describe("without token", () => {
it("should throw error", () => {
expect(() => {
typetalk({
"message": "Hello, World!",
"token": "",
"topicId": 1234567890
});
})
.to
.throw();
});
});
describe("without topic id", () => {
it("should throw error", () => {
expect(() => {
typetalk({
"message": "Hello, World!",
"token": "qweasdzxc",
"topicId": ""
});
})
.to
.throw();
});
});
describe("without message", () => {
it("should throw error", () => {
expect(() => {
typetalk({
"message": "",
"token": "qweasdzxc",
"topicId": 1234567890
});
})
.to
.throw();
});
});
describe("with enough options", () => {
before(() => {
const OK = 200;
nock("https://typetalk.com")
.post("/api/v1/topics/12345")
.reply(OK, {});
});
it("should post message", () => {
expect(() => {
typetalk({
"message": "Hello, World!",
"token": "qweasdzxc",
"topicId": 12345
});
})
.not
.to
.throw();
});
});
});