Files
js-openstack-lib/test/unit/indexTest.js
Michael Krotscheck 9877477cef Added jasmine-based testing harness.
This patch adds jasmine-based testing harnesses for node tests.
A dummy test has also been added to demonstrate use of ES6
features.

Change-Id: I6d7249ba0224107f79a453eff0676e1c49424eb6
2016-07-14 13:12:09 +03:00

9 lines
173 B
JavaScript

import Test from "../../src/index.js";
describe("Simple test", () => {
it("should export a class", () => {
var t = new Test();
expect(t).toBeDefined();
});
});