From 14a761cef4ab4c5b754714b3588e3d6799f97810 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Thu, 18 Feb 2016 19:40:58 -0500 Subject: [PATCH] test spec, must install jasmine-node globally --- spec/one-spec.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 spec/one-spec.js diff --git a/spec/one-spec.js b/spec/one-spec.js new file mode 100644 index 0000000..ab0fccd --- /dev/null +++ b/spec/one-spec.js @@ -0,0 +1,6 @@ +describe("multiplication", function () { + it("should multiply 2 and 3", function () { + var product = 6; + expect(product).toBe(6); + }); +});