mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
8 lines
209 B
JavaScript
8 lines
209 B
JavaScript
|
// 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);
|