From d0f9d5fd13866db3f2bc9f3cd64569f826d05a23 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 14 Oct 2013 10:14:40 -0400 Subject: [PATCH] Setting up some more directory structure for tests --- .gitignore | 1 + test/fixtures/modal.html | 25 +++++++++++++++++++++++++ test/modules/modal.spec.js | 7 +++++++ 3 files changed, 33 insertions(+) create mode 100755 test/fixtures/modal.html create mode 100755 test/modules/modal.spec.js diff --git a/.gitignore b/.gitignore index 143d10655..7cd3b06ca 100755 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ docs/ node_modules node/server.json +test/coverage # Numerous always-ignore extensions *.diff diff --git a/test/fixtures/modal.html b/test/fixtures/modal.html new file mode 100755 index 000000000..9ab940cda --- /dev/null +++ b/test/fixtures/modal.html @@ -0,0 +1,25 @@ + \ No newline at end of file diff --git a/test/modules/modal.spec.js b/test/modules/modal.spec.js new file mode 100755 index 000000000..e3c473821 --- /dev/null +++ b/test/modules/modal.spec.js @@ -0,0 +1,7 @@ +describe("UI Modal", function() { + + it("should have an instance in metadata after init", function() { + expect(true).toBe(true); + }); + +}); \ No newline at end of file