-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtips.test.js
56 lines (47 loc) · 1.46 KB
/
tips.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
/**
* Unit test for the data specification of the tips.
*
* You can embed it in your unit tests, if you want.
*
* @public
* @module tipsTest
* @requires mocha
* @requires chai
* @requires data/Tips
*/
import "https://unpkg.com/[email protected]/mocha.js"; /* globals mocha */
import "https://unpkg.com/[email protected]/chai.js"; /* globals chai */
import { tips } from "../../../data/Tips.js";
// TODO: only checks two levels deep. Currently, we do not require/test the third-level to be frozen)
describe("data: tips", function () {
describe("tip list", function () {
it("is there", function () {
chai.assert.exists(tips);
chai.assert.isNotEmpty(tips);
});
it("is array", function () {
chai.assert.isArray(tips);
});
it("is frozen", function () {
chai.assert.isFrozen(tips);
});
});
describe("tips – inner objects, i.e. actual tips", function () {
it("are there", function () {
for (const tipObject of tips) {
chai.assert.exists(tipObject);
chai.assert.isNotEmpty(tipObject);
}
});
it("are objects", function () {
for (const tipObject of tips) {
chai.assert.isObject(tipObject);
}
});
it("are frozen", function () {
for (const tipObject of tips) {
chai.assert.isFrozen(tipObject);
}
});
});
});