Skip to content

Commit 6d05f22

Browse files
authored
Merge branch 'main' into tk/fix-project-notebook-picker
2 parents 5388ead + 62a5275 commit 6d05f22

3 files changed

Lines changed: 18 additions & 18 deletions

File tree

AGENTS.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77

88
## Code conventions
99

10-
- Always run `npx prettier` before committing
10+
- Always run `npm run format-fix` after making changes to the code
1111

1212
## Testing
1313

1414
- Unit tests use Mocha/Chai framework with `.unit.test.ts` extension
1515
- Test files should be placed alongside the source files they test
16+
- Tests run against compiled JavaScript files in `out/` directory — build first with `npm run compile-tsc`
1617
- Run all tests: `npm test` or `npm run test:unittests`
18+
- Run tests matching a pattern: `npm run test:unittests -- --grep "SuiteName"` (forwards `--grep` to mocha, matches suite and test names)
1719
- Run single test file: `npx mocha --config ./build/.mocha.unittests.js.json ./out/path/to/file.unit.test.js`
18-
- Tests run against compiled JavaScript files in `out/` directory
1920
- Use `assert.deepStrictEqual()` for object comparisons instead of checking individual properties
2021

2122
## Project Structure

package-lock.json

Lines changed: 14 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2948,6 +2948,6 @@
29482948
"bn.js@<4.12.3": "4.12.3",
29492949
"serialize-javascript@<=7.0.2": "7.0.3",
29502950
"undici@<6.24.0": "6.24.1",
2951-
"flatted@<3.4.0": "3.4.0"
2951+
"flatted@<3.4.2": "3.4.2"
29522952
}
29532953
}

0 commit comments

Comments
 (0)