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.
works-on-my-machine/script/integration-tests
Marc Cataford e6ef369fdb
build: ts-node no longer needed in main install (#24)
* build: ts-node no longer needed in main install

* test: integration tests can use regular build package
2023-04-15 01:37:05 -04:00

7 lines
122 B
Bash

#!/usr/bin/bash
yarn pack
for filename in $(find ./integration -type f -print); do
yarn dlx ts-node $filename;
done