add label to pictures
All checks were successful
Deploy Sokko G / deploy (push) Successful in 6s

This commit is contained in:
Shinuwa 2026-07-25 13:39:35 +02:00
parent ef5f977f8a
commit d7871736c8
10 changed files with 566 additions and 8 deletions

View file

@ -10,6 +10,19 @@ test("vite entrypoint loads the react application", async () => {
assert.match(html, /\/src\/main\.jsx/);
});
test("project documentation tracks storage and feature updates", async () => {
const storageSchema = await readFile("docs/STORAGE_SCHEMA.md", "utf8");
const featureChecklist = await readFile("docs/FEATURE_CHECKLIST.md", "utf8");
assert.match(storageSchema, /IndexedDB/);
assert.match(storageSchema, /Outil Checklist/);
assert.match(storageSchema, /Outil Images/);
assert.match(storageSchema, /Outil Annotation d'images/);
assert.match(storageSchema, /Outil Calculateur/);
assert.match(featureChecklist, /Mettre à jour `docs\/STORAGE_SCHEMA\.md`/);
assert.match(featureChecklist, /npm run check/);
});
test("react application defines the expected local toolbox primitives", async () => {
const source = await readFile("website/src/main.jsx", "utf8");
const styles = await readFile("website/src/styles/main.scss", "utf8");