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 540ce0bbbb
test: add integration test on ts skip (#22)
* test: add integration test on ts skip

* chore: add test prefix to commit linter

* build: shell access

* build: lint commit to include first commit
2023-04-15 00:34:06 -04:00

7 lines
141 B
Bash

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