jenot/priv/static/js/jenot-tests.js
2024-11-28 20:59:28 +01:00

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,
});