18 lines
224 B
JavaScript
18 lines
224 B
JavaScript
|
/**
|
||
|
* Prefix all test-functions with "test"
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Called before running the tests
|
||
|
*/
|
||
|
var setup = function() {
|
||
|
return;
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Called after all tests have finished
|
||
|
*/
|
||
|
var cleanup = function() {
|
||
|
return;
|
||
|
};
|