MACHIN
This commit is contained in:
5
6/node_modules/jasmine-node/spec/nested/NestedSpec.js
generated
vendored
Normal file
5
6/node_modules/jasmine-node/spec/nested/NestedSpec.js
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
describe('jasmine-node-nested', function(){
|
||||
it('should pass', function(){
|
||||
expect(1+2).toEqual(3);
|
||||
});
|
||||
});
|
||||
11
6/node_modules/jasmine-node/spec/nested/uber-nested/UberNestedSpec.js
generated
vendored
Normal file
11
6/node_modules/jasmine-node/spec/nested/uber-nested/UberNestedSpec.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
describe('jasmine-node-uber-nested', function(){
|
||||
it('should pass', function(){
|
||||
expect(1+2).toEqual(3);
|
||||
});
|
||||
|
||||
describe('failure', function(){
|
||||
it('should report failure (THIS IS EXPECTED)', function(){
|
||||
expect(true).toBeFalsy();
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user