deardesi.js/views/about/view2_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.view2 module", function () {
beforeEach(module("myApp.view2"));
2015-01-13 10:18:13 +00:00
2020-11-09 03:30:15 +00:00
describe("view2 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 view2Ctrl = $controller("View2Ctrl");
2015-01-13 10:18:13 +00:00
expect(view2Ctrl).toBeDefined();
}));
});
2020-11-09 03:30:15 +00:00
});