mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
d3f9a3aeb5
Fixing 1000s of lint issues. Some rules cannot be `--fix`ed but this goes some way to linting the entire codebase.
8 lines
206 B
JavaScript
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);
|