1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-06 03:50:04 +02:00

add filesystem(file explorer) support, done

This commit is contained in:
hzsunshx 2015-09-22 17:16:46 +08:00
parent b258837757
commit 1dccda5e2a
11 changed files with 174 additions and 74 deletions

View file

@ -0,0 +1,17 @@
describe('FsCtrl', function () {
beforeEach(angular.mock.module(require('./').name));
var scope, ctrl;
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('FsCtrl', {$scope: scope});
}));
it('should ...', inject(function () {
expect(1).toEqual(1);
}));
});