deardesi.js/views/site/view1_test.js

14 lines
321 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.view1 module", function () {
beforeEach(module("myApp.view1"));
2015-01-13 10:18:13 +00:00
2020-11-09 03:30:15 +00:00
describe("view1 controller", function () {
it("should ....", inject(function ($controller) {
2015-01-13 10:18:13 +00:00
//spec body
2020-11-09 03:30:15 +00:00
var view1Ctrl = $controller("View1Ctrl");
2015-01-13 10:18:13 +00:00
expect(view1Ctrl).toBeDefined();
}));
});
2020-11-09 03:30:15 +00:00
});