File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 7
7
describe('${1:task number ('01')} ${2:function name}', function () {
8
8
9
9
it('should exist', function () {
10
- expect(${2}).to.not. be.undefined ;
10
+ expect(${2}).to.be.defined ;
11
11
});
12
12
13
13
it('should be a function', function () {
34
34
describe('${1:task number ('01')} ${2:variable name}', function () {
35
35
36
36
it('should exist', function () {
37
- expect(${2}).to.not. be.undefined ;
37
+ expect(${2}).to.be.defined ;
38
38
});
39
39
40
40
it('should be an array', function () {
60
60
describe('${1:task number ('01')} ${2:variable name}', function () {
61
61
62
62
it('should exist', function () {
63
- expect(${2}).to.not. be.undefined ;
63
+ expect(${2}).to.be.defined ;
64
64
});
65
65
66
66
it('should be an object', function () {
Original file line number Diff line number Diff line change 32
32
"no-shadowed-variable" : true ,
33
33
"no-string-literal" : true ,
34
34
"no-switch-case-fall-through" : true ,
35
- "no-trailing-comma" : true ,
36
35
"no-trailing-whitespace" : true ,
37
36
"no-unused-expression" : true ,
38
37
"no-unused-variable" : true ,
43
42
" check-open-brace" ,
44
43
" check-catch" ,
45
44
" check-else" ,
45
+ " check-finally" ,
46
46
" check-whitespace"
47
47
],
48
48
"quotemark" : [true , " single" ],
49
49
"radix" : true ,
50
50
"semicolon" : true ,
51
- "sort-object-literal-keys" : false ,
52
51
"triple-equals" : [true , " allow-null-check" ],
53
52
"variable-name" : false ,
54
53
"whitespace" : [true ,
You can’t perform that action at this time.
0 commit comments