You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
303 B
12 lines
303 B
7 years ago
|
'use strict';
|
||
|
|
||
|
const { pass, fail } = require('../constants');
|
||
|
|
||
|
const runTests = tests => Promise.all(tests.map(test =>
|
||
|
test.test()
|
||
|
.then(() => ({ description: test.description, result: pass }))
|
||
|
.catch(e => ({ description: test.description, result: fail, error: e }))
|
||
|
));
|
||
|
|
||
|
module.exports = runTests;
|