Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ console.log({
## Testing

- The project uses `Vitest` with a Node test environment.
- Tests live in `test/` and cover both unit behavior and CLI integration flows.
- Tests live in `tests/` and cover both unit behavior and CLI integration flows.
- Use `pnpm test` for a single run and `pnpm test:watch` while iterating.
- Use `pnpm run ci` to run lint, typecheck, tests, and build together.

Expand All @@ -122,7 +122,7 @@ console.log({
- Compiled JavaScript is emitted to `dist/`.
- The CLI entry point is emitted to `dist/cli/index.js`.
- Source files remain in `src/`.
- Vitest test files remain in `test/` and are not emitted by the build.
- Vitest test files remain in `tests/` and are not emitted by the build.

## Configuration

Expand Down Expand Up @@ -152,7 +152,7 @@ The main repository-level configuration files are:
│ ├── parser/ # Strict mnemonic parsing rules
│ ├── types/ # Shared DTOs and result types
│ └── index.ts # Public export surface
├── test/ # Unit and integration tests
├── tests/ # Unit and integration tests
├── biome.json # Lint/format configuration
├── package.json # Scripts and package metadata
├── README.md # Project overview and usage
Expand Down
2 changes: 1 addition & 1 deletion test/wordlist.spec.ts → tests/wordlist.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from "node:assert/strict";
import test from "node:test";
import { test } from "vitest";

import {
createWordlist,
Expand Down