Skip to content
This repository was archived by the owner on Jun 13, 2026. It is now read-only.

Temme tests

Oussama Essamadi edited this page Jun 13, 2026 · 2 revisions

Testing

Temme uses Jest for its automated test suite.

You can run the tests with:

pnpm test

If you prefer npm, the equivalent is:

npm test

The current test suite covers the core parts of the library, including:

  • parsing
  • references and inheritance behavior
  • validation
  • API coverage expectations

In this repository, the main test files are:

  • tests/temme.test.js
  • tests/references.test.js
  • tests/validation.test.js
  • tests/coverage.test.js

A local sandbox is also available for manual experimentation and quick browser testing:

  • tests/sandbox/index.html

The sandbox is useful when you want to inspect rendered output manually or try hierarchy changes outside the automated test suite.

Clone this wiki locally