Commits
main
Name already in use
Commits on Feb 19, 2023
-
Merge pull request testdouble#505 from testdouble/build-on-windows
Add windows to the build
-
-
Merge pull request testdouble#506 from webstech/cw/winwin
ci: improve Windows support
Commits on Feb 13, 2023
-
ci: do not expect shebang support on Windows
Specify command to run in scripts named 'test:example:*'. Signed-off-by: Chris. Webster <chris@webstech.net>
-
dev: support Windows based developers
Add control so files are checked out with lf and not crlf. A number of tests are shell scripts that run under bash and Windows lineends are not supported. Signed-off-by: Chris. Webster <chris@webstech.net>
-
ci - teenytest-proxy Windows support
npm installs packages differently based on the platform. The `.bin` entry the proxy was using is a symlink on UNIX type platforms but may have three different forms on WIndows. The actual installed package will now be required directly. This is still a temporary patch pending fixes for the issues identified in the proxy file. Signed-off-by: Chris. Webster <chris@webstech.net>
Commits on Feb 12, 2023
-
Merge pull request testdouble#504 from Trim/document-replaceesm-api
add documentation for td.replaceEsm API
-
-
-
-
-
-
-
-
-
It isn't clear why this won't work with npm ci but I assume it has so…
…mething to do with local paths
-
-
-
-
Update CI to include windows as well as test Node 14, which I think(?…
…) we still support
Commits on Feb 7, 2023
-
add documentation for td.replaceEsm API
The API for `td.replaceEsm` differs a bit in argument interpretation compared to `td.replace` one, explain it and give documentation reference to `quibble.esm`.
Commits on Nov 23, 2022
-
Merge pull request testdouble#501 from mcous/docs-vitest
docs: add testdouble-vitest links to docs
-
Commits on Nov 16, 2022
Commits on Nov 14, 2022
-
Currently: ```ts // `subscriptions` is `void` const subscriptions = await td.replaceEsm( '../../subscriptions.js', ); ``` Now: ```ts // `subscriptions` is `{ [namedExport: string]: any; default?: any; }` const subscriptions = await td.replaceEsm( '../../subscriptions.js', ); ```
-
-