mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
9 lines
216 B
JavaScript
9 lines
216 B
JavaScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
const mock = require('mock-require');
|
|
|
|
mock('ts-node', () => {
|
|
throw new Error("I don't want to run tests with ts-node");
|
|
});
|
|
|
|
require('karma/lib/cli').run();
|