mirror of
https://github.com/openstf/stf
synced 2025-10-05 10:39:25 +02:00
17 lines
327 B
JavaScript
17 lines
327 B
JavaScript
describe('UsbCtrl', function() {
|
|
|
|
beforeEach(angular.mock.module(require('./').name))
|
|
|
|
var scope, ctrl
|
|
|
|
beforeEach(inject(function($rootScope, $controller) {
|
|
scope = $rootScope.$new()
|
|
ctrl = $controller('UsbCtrl', {$scope: scope})
|
|
}))
|
|
|
|
it('should ...', inject(function() {
|
|
expect(1).toEqual(1)
|
|
|
|
}))
|
|
|
|
})
|