-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
70 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 () { | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 () { | ||
|
||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 () { | ||
|
||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 () { | ||
|
||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 () { | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | ||
*/ | ||
|
||
|