riot-web/test/all-tests.js

8 lines
209 B
JavaScript
Raw Normal View History

// all-tests.js
//
// Our master test file: uses the webpack require API to find our test files
// and run them
var context = require.context('./app-tests', true, /\.jsx?$/);
context.keys().forEach(context);