Start of test code for JS plugins

This commit is contained in:
Max Lynch
2013-09-10 11:38:32 -05:00
parent ef4a50e0b8
commit d2b0f7f12a
2 changed files with 12 additions and 1 deletions

View File

@ -21,7 +21,8 @@ module.exports = function(config) {
'vendor/angular/1.2.0rc1/*',
'ext/angular/src/**/*.js',
'ext/angular/test/**/*.js',
'hacking/**/*.js'
'hacking/**/*.js',
'test/**/*.js'
],

10
test/views/bar.js Normal file
View File

@ -0,0 +1,10 @@
describe('Bar view', function() {
beforeEach(function() {
});
it('Should initialize', function() {
});
});