mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 08:03:30 +02:00
18 lines
358 B
JavaScript
18 lines
358 B
JavaScript
describe('InputAdvancedCtrl', function () {
|
|
|
|
beforeEach(angular.mock.module(require('./').name));
|
|
|
|
var scope, ctrl;
|
|
|
|
beforeEach(inject(function ($rootScope, $controller) {
|
|
scope = $rootScope.$new();
|
|
ctrl = $controller('InputAdvancedCtrl', {$scope: scope});
|
|
}));
|
|
|
|
it('should ...', inject(function () {
|
|
expect(1).toEqual(1);
|
|
|
|
}));
|
|
|
|
});
|