No description
This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2023-04-14 09:38:21 -04:00
.github/workflows feat: getting something going (#1) 2023-04-14 09:38:15 -04:00
.yarn/releases build: yarn@3.5.0 (#6) 2023-04-14 09:38:20 -04:00
src feat: split runner and workers, set up ipc (#8) 2023-04-14 09:38:20 -04:00
tests feat: runner without dynamic import (#5) 2023-04-14 09:38:20 -04:00
.gitignore build: yarn@3.5.0 (#6) 2023-04-14 09:38:20 -04:00
.nvmrc feat: getting something going (#1) 2023-04-14 09:38:15 -04:00
.yarnrc.yml build: yarn@3.5.0 (#6) 2023-04-14 09:38:20 -04:00
LICENSE Initial commit 2023-03-26 15:20:46 -04:00
package.json build: rome@12 (#9) 2023-04-14 09:38:21 -04:00
README.md feat: getting something going (#1) 2023-04-14 09:38:15 -04:00
rome.json feat: getting something going (#1) 2023-04-14 09:38:15 -04:00
tsconfig.json feat: getting something going (#1) 2023-04-14 09:38:15 -04:00
yarn.lock build: rome@12 (#9) 2023-04-14 09:38:21 -04:00

works-on-my-machine (womm)

A full-nonsense pet test runner

So, what is this?

Software in the NodeJS ecosystem tends to depend a lot on external dependencies. What would a test runner without any look like? This is the question that started all of this.

womm is a pet test runner that follows the general direction of jest and playwright with a few additional constraints:

  • It must not have any production dependencies (some development dependencies are permissible, like typescript and rome, but keeping it to a minimum);
  • It must be compatible with the general API exposed by Jest and the like, for familiarity;
  • It must use itself for testing.