Skip to content

Commit a08d0c2

Browse files
committed
Add integration tests for ChildProcess API.
1 parent 0ec25f7 commit a08d0c2

File tree

13 files changed

+3856
-10
lines changed

13 files changed

+3856
-10
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
app
2+
.gren
3+
node_modules/
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
app: Makefile gren.json src/Main.gren
2+
gren make --optimize Main --output=bin/app
3+
4+
.PHONY: test
5+
test: app node_modules
6+
npm test
7+
8+
node_modules: package.json package-lock.json
9+
npm install
10+
11+
.PHONY: clean
12+
clean:
13+
rm -rf .gren
14+
rm -rf node_modules
15+
rm bin/app

integration-tests/child-process/bin/.gitkeep

Whitespace-only changes.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"type": "application",
3+
"platform": "node",
4+
"source-directories": [
5+
"src"
6+
],
7+
"gren-version": "0.6.2",
8+
"dependencies": {
9+
"direct": {
10+
"gren-lang/core": "7.0.0",
11+
"gren-lang/node": "local:../.."
12+
},
13+
"indirect": {
14+
"gren-lang/url": "6.0.0"
15+
}
16+
}
17+
}
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)