diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2022-03-20 11:41:37 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-20 22:20:59 +0100 |
commit | 16bee0ba79ddc3932a5a534abd751e7eeb03b623 (patch) | |
tree | ea413291be06642bd92d82d2bf965df11e39111e /Base | |
parent | 67fc81a65a21de9302f8b77799f427f9a480bc83 (diff) | |
download | serenity-16bee0ba79ddc3932a5a534abd751e7eeb03b623.zip |
Everywhere: Move js/web/wasm tests under /home/anon/Tests
Diffstat (limited to 'Base')
-rw-r--r-- | Base/usr/share/man/man1/test-js.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Base/usr/share/man/man1/test-js.md b/Base/usr/share/man/man1/test-js.md index a6e9f728c4..24f1426590 100644 --- a/Base/usr/share/man/man1/test-js.md +++ b/Base/usr/share/man/man1/test-js.md @@ -10,13 +10,13 @@ $ test-js [options...] [path] ## Description -`test-js` runs the LibJS test suite located in `/home/anon/js-tests`. These +`test-js` runs the LibJS test suite located in `/home/anon/Test/js-tests`. These tests are using a custom JavaScript testing framework inspired by -[Jest](https://jestjs.io) (see [`test-common.js`](/home/anon/js-tests/test-common.js)). +[Jest](https://jestjs.io) (see [`test-common.js`](/home/anon/Tests/js-tests/test-common.js)). It also supports the [test262 parser tests](https://github.com/tc39/test262-parser-tests). -The test root directory is assumed to be `/home/anon/js-tests`, or `$SERENITY_SOURCE_DIR/Userland/Libraries/LibJS/Tests` +The test root directory is assumed to be `/home/anon/Tests/js-tests`, or `$SERENITY_SOURCE_DIR/Userland/Libraries/LibJS/Tests` when using the Lagom build. Optionally you can pass a custom path to `test-js` to override these defaults. You can disable output from `dbgln()` calls by setting the `DISABLE_DBG_OUTPUT` environment variable. |