mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
Move karma config files to browser-tests and split out some of the config file to make adding browserstack easier. `npm run test:browser` is more descriptive than `npm run karma`, does not tie mathjs into using karma and will allow a new npm script to run tests on browserstack also using karma.
6 lines
129 B
JavaScript
6 lines
129 B
JavaScript
'use strict';
|
|
|
|
const testsContext = require.context('../test/', true, /.test\.js$/);
|
|
|
|
testsContext.keys().forEach(testsContext);
|