AngularJS单元测试天气应用|业力

时间:2020-06-09 17:12:00

标签: angularjs unit-testing karma-runner

能帮我用Karma纠正AngularJS-UnitTesting

describe('Unit Test', function() {
beforeEach(module('ourAppApp'));
var $controller;

beforeEach(inject(function($controller){
$controller = $controller;
}));
describe('Do not remove', function() {
it('Check 1', function() {
expect(1).toBe(1);
});
it('Check 2', function() {
expect(1).toBe(1);
});
});
});

0 个答案:

没有答案