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