Last active
August 29, 2015 14:23
-
-
Save lpinca/0ac2df1e73ff5bf73c4d to your computer and use it in GitHub Desktop.
Test case for defunctzombie/zuul#214
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "zuul-214", | |
"version": "1.0.0", | |
"description": "", | |
"main": "test.js", | |
"scripts": { | |
"zuul": "zuul" | |
}, | |
"author": "", | |
"license": "ISC", | |
"devDependencies": { | |
"mocha": "^2.2.5", | |
"zuul": "^3.0.0" | |
} | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe('zuul#214', function () { | |
var foo = { class: 'bar' }; | |
it('is an object', function () { | |
if (typeof foo !== 'object') throw new Error('Test invalidation'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment