Files
stf-DeviceFarmer-1/res/app/control-panes/dashboard/clipboard/clipboard-spec.js
2014-05-12 19:02:17 +09:00

17 lines
333 B
JavaScript

describe('ClipboardCtrl', function () {
beforeEach(module('stf.clipboard'));
var scope, ctrl;
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('ClipboardCtrl', {$scope: scope});
}));
it('should ...', inject(function () {
expect(1).toEqual(1);
}));
});