From d2b0f7f12adb722abcd167937cce0f10bdab95c7 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Tue, 10 Sep 2013 11:38:32 -0500 Subject: [PATCH] Start of test code for JS plugins --- ionic.conf.js | 3 ++- test/views/bar.js | 10 ++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 test/views/bar.js diff --git a/ionic.conf.js b/ionic.conf.js index 7f56257825..8062afc518 100644 --- a/ionic.conf.js +++ b/ionic.conf.js @@ -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' ], diff --git a/test/views/bar.js b/test/views/bar.js new file mode 100644 index 0000000000..f5bc239784 --- /dev/null +++ b/test/views/bar.js @@ -0,0 +1,10 @@ +describe('Bar view', function() { + + beforeEach(function() { + + }); + + it('Should initialize', function() { + + }); +}); \ No newline at end of file