mirror of
https://github.com/zoldar/jenot.git
synced 2026-01-05 07:02:55 +00:00
12 lines
307 B
JavaScript
12 lines
307 B
JavaScript
import { runTests } from "./test-utils.js";
|
|
|
|
// tests to run
|
|
import "./components-test.js";
|
|
import "./synced-store-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,
|
|
});
|