mirror of
https://github.com/zoldar/jenot.git
synced 2026-01-05 07:02:55 +00:00
11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
import { runTests } from "./test-utils.js";
|
|
|
|
// tests to run
|
|
import "./components-test.js";
|
|
|
|
const URL_PARAMS = new URLSearchParams(window.location.search);
|
|
const CONCRETE_TEST = URL_PARAMS.get("t");
|
|
|
|
runTests({
|
|
only: CONCRETE_TEST ? [parseInt(CONCRETE_TEST)] : null,
|
|
});
|