summaryrefslogtreecommitdiffstats
path: root/test_spec.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test_spec.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/test_spec.js b/test_spec.js
new file mode 100644
index 00000000..b7ac4cf5
--- /dev/null
+++ b/test_spec.js
@@ -0,0 +1,5 @@
+describe("A suite", function() {
+ it("contains spec with an expectation", function() {
+ expect(true).toBe(true);
+ });
+});