-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix exit code * update test db and schema for new PB versions
- Loading branch information
Showing
4 changed files
with
81 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,11 @@ node ./dist/index.js --url http://0.0.0.0:8090 --email [email protected] --password | |
node ./dist/index.js --db pb_data/data.db --out output/pocketbase-types-db.ts | ||
|
||
node integration.js | ||
echo "Integration tests pass" | ||
exit_status=$? | ||
|
||
if [ $exit_status -eq 0 ]; then | ||
echo "Integration tests pass" | ||
else | ||
echo "FAIL integration tests" | ||
exit $exit_status | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters