mirror of
https://github.com/bobwen-dev/react-templates
synced 2025-04-12 00:56:39 +02:00
11 lines
316 B
JavaScript
11 lines
316 B
JavaScript
'use strict';
|
|
const test = require('tape');
|
|
const path = require('path');
|
|
const dataPath = path.resolve(__dirname, '..', 'data');
|
|
|
|
const specs = ['rt.invalid', 'rt.valid', 'utils', 'shell', 'rtStyle', 'fsUtil'];
|
|
|
|
specs
|
|
.map(file => require(`./${file}.spec`))
|
|
.forEach(spec => spec.runTests(test, dataPath));
|