-
Notifications
You must be signed in to change notification settings - Fork 1
/
compile.test.js
52 lines (50 loc) · 1.61 KB
/
compile.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
const { compile, str, array, object } = require('../index')
test('example', () => {
expect(compile({
assignment: {
assignees: array.len(3).uniq.items(str.len(16)),
assigner: object.strict.properties({
id: str.len(16)
}),
assigned_at: str.datetime
}
})).toEqual({
type: "object",
properties: {
assignment: {
type: "object",
properties: {
assigner: {
type: "object",
properties: {
id: {
type: "string",
minLength: 16,
maxLength: 16
}
},
required: ["id"],
additionalProperties: false
},
assignees: {
type: "array",
maxItems: 3,
minItems: 3,
uniqueItems: true,
items: {
type: "string",
minLength: 16,
maxLength: 16
}
},
assigned_at: {
type: "string",
format: "date-time"
}
},
required: ["assignees", "assigner", "assigned_at"]
}
},
required: ["assignment"]
})
})