1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-05-29 07:41:18 +03:00
matrix-react-sdk/test/all-tests.js
Luke Barnard d3f9a3aeb5 Run eslint --fix
Fixing 1000s of lint issues. Some rules cannot be `--fix`ed but this goes some way to linting the entire codebase.
2017-10-11 17:56:17 +01:00

8 lines
206 B
JavaScript

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