deardesi.js/components/version/version_test.js

12 lines
271 B
JavaScript
Raw Normal View History

2020-11-09 03:30:15 +00:00
"use strict";
2015-01-13 10:18:13 +00:00
2020-11-09 03:30:15 +00:00
describe("myApp.version module", function () {
beforeEach(module("myApp.version"));
2015-01-13 10:18:13 +00:00
2020-11-09 03:30:15 +00:00
describe("version service", function () {
it("should return current version", inject(function (version) {
expect(version).toEqual("0.1");
2015-01-13 10:18:13 +00:00
}));
});
});