mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
7 lines
204 B
JavaScript
7 lines
204 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('.', true, /-test\.jsx?$/);
|
|
context.keys().forEach(context);
|