-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
77 lines (64 loc) · 1.07 KB
/
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
73
74
75
76
77
var validate = require('./');
var options = {
filename: __dirname
};
validate({
name: 'LOL'
}, options);
validate({
name: 'lkjasdf.kljasdf'
}, options);
validate({
name: 'lkajsdf_lkjasldjkf'
}, options);
validate({
name: 'klasdjf-askljdf'
}, options);
validate({
local: [
'a',
'b'
]
}, options);
validate({
repo: 'kljasdf/kljalksjdf'
}, options)
validate({
development: {
'component/emitter': "1.0.0"
}
}, options);
try {
validate({
scripts: {}
}, options);
throw new Error('scripts validation FAILED');
} catch (err) {
console.error(err.message);
}
try {
validate({
development: []
}, options);
throw new Error('development validation FAILED');
} catch (err) {
console.error(err.message);
}
try {
validate({
dependencies: []
}, options);
throw new Error('dependencies validation FAILED');
} catch (err) {
console.error(err.message);
}
try {
validate({
dependencies: {
a: '*'
}
}, options);
throw new Error('dependency name validation FAILED');
} catch (err) {
console.error(err.message);
}