mirror of
https://github.com/gosticks/dash-player.git
synced 2025-10-16 11:55:36 +00:00
12 lines
346 B
JavaScript
12 lines
346 B
JavaScript
/* eslint-disable import/default */
|
|
/* global require:false */
|
|
import karmaRunner from 'dash-components-archetype-dev/karma-runner';
|
|
|
|
karmaRunner.setupEnvironment();
|
|
|
|
// Use webpack to infer and `require` tests automatically.
|
|
var testsReq = require.context('../src', true, /\.test.js$/);
|
|
testsReq.keys().map(testsReq);
|
|
|
|
karmaRunner.startKarma();
|