Skip to content

Commit

Permalink
test(okam-helper): up test spec
Browse files Browse the repository at this point in the history
  • Loading branch information
wuhy committed Oct 22, 2018
1 parent 63d198f commit 8f1c443
Show file tree
Hide file tree
Showing 7 changed files with 70 additions and 2 deletions.
13 changes: 13 additions & 0 deletions packages/okam-helper/test/tasks/Timer.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**
* @file Timer test spec
* @author [email protected]
*/

'use strict';

import assert from 'assert';
import Timer from '../../lib/Timer';

describe('Timer', function () {

});
14 changes: 14 additions & 0 deletions packages/okam-helper/test/tasks/event.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/**
* @file Event test spec
* @author [email protected]
*/

'use strict';

import assert from 'assert';
import event from '../../lib/event';

describe('Event', function () {

});

14 changes: 14 additions & 0 deletions packages/okam-helper/test/tasks/file.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/**
* @file File test spec
* @author [email protected]
*/

'use strict';

import assert from 'assert';
import file from '../../lib/file';

describe('file', function () {

});

14 changes: 14 additions & 0 deletions packages/okam-helper/test/tasks/helper.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/**
* @file Helper test spec
* @author [email protected]
*/

'use strict';

import assert from 'assert';
import helper from '../../lib/helper';

describe('Helper', function () {

});

2 changes: 1 addition & 1 deletion packages/okam-helper/test/tasks/logger.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

'use strict';

import expect, {createSpy, spyOn} from 'expect';
import expect, {spyOn} from 'expect';
import assert from 'assert';
import logger, {Logger, getLogger, create as createLogger} from '../../lib/logger';

Expand Down
13 changes: 13 additions & 0 deletions packages/okam-helper/test/tasks/require.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**
* @file Require test spec
* @author [email protected]
*/

'use strict';

import assert from 'assert';
import customRequire from '../../lib/require';

describe('Require', function () {

});
2 changes: 1 addition & 1 deletion packages/okam-helper/test/tasks/string.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @file string util test spec
* @file String util test spec
* @author [email protected]
*/

Expand Down

0 comments on commit 8f1c443

Please sign in to comment.