14 lines
724 B
JavaScript
14 lines
724 B
JavaScript
import fs from 'node:fs';
|
|
import assert from 'node:assert/strict';
|
|
|
|
const html = fs.readFileSync(new URL('../www/index.html', import.meta.url), 'utf8');
|
|
const main = fs.readFileSync(new URL('../www/main.js', import.meta.url), 'utf8');
|
|
|
|
const styleSelect = html.match(/<select\b[^>]*\bid="styleSel"[^>]*>/)?.[0] || '';
|
|
assert(styleSelect, 'style selector is missing');
|
|
assert(!/\bopt-w-\d+\b/.test(styleSelect), 'style selector must not have a fixed-width utility class');
|
|
assert(/adjustStyleDropdownWidth\(\)/.test(main), 'dynamic style selector sizing is missing');
|
|
assert(/styleSel\.style\.width\s*=/.test(main), 'dynamic style selector width assignment is missing');
|
|
|
|
console.log('GUI contract regression tests passed');
|