Skip to content

Commit 8833d40

Browse files
committed
Fix tests
1 parent 6bb6a46 commit 8833d40

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,5 @@ jobs:
2525
- name: Verify formatting
2626
run: devbox run format:check
2727

28-
- name: Run unit tests
28+
- name: Run tests
2929
run: devbox run test
30-
31-
- name: Run integration tests
32-
run: devbox run integration

devbox.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,14 @@
1313
"format": "prettier -w \"!**/*.json\" .",
1414
"format:check": "prettier -c \"!**/*.json\" .",
1515
"test": [
16+
"devbox run test:unit",
17+
"devbox run test:integration"
18+
],
19+
"test:unit": [
1620
"cd tests/",
1721
"gren run Main"
1822
],
19-
"integration": [
23+
"test:integration": [
2024
"cd integration_tests",
2125
"gren run Main"
2226
]

integration_tests/gren.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"source-directories": [
55
"src"
66
],
7-
"gren-version": "0.6.2",
7+
"gren-version": "0.6.3",
88
"dependencies": {
99
"direct": {
1010
"blaix/gren-effectful-tests-node": "5.0.0",

0 commit comments

Comments
 (0)