UNPKG
backdraft
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
API starter kit for rapid response development. Based on Express.
backdraft.io
FireHatLabs/backdraft
backdraft
/
test
/
acceptance
/
test.all.js
13 lines
(9 loc)
•
279 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
// Test Library
var
tester =
require
(
'./test.lib.js'
); tester.
config
.
uri
=
'http://127.0.0.1:3001'
;
// Test Files
var
testAuthentication =
require
(
'./authentication.test.js'
);
// Tests to Execute
suite
(
'Authentication'
,
function
(
) { testAuthentication.
run
(tester); });