UNPKG
codebox-quickstart
Version:
latest (0.1.11)
0.1.11
0.1.10
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
Command line tool to generate addon skeleton.
github.com/YuukanOO/codebox-quickstart
codebox-quickstart
/
tests
/
10_unit_tests.js
12 lines
(7 loc)
•
233 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
var
unit =
require
(
'../lib/unit'
);
var
fs =
require
(
'fs'
);
exports
.
testPrepareWorkingDirectory
=
function
(
test
) {
var
path = __dirname +
"/my/custom/module"
;
//unit.prepareWorkingDirectory(path);
test.
done
(); };