Skip to content

Commit c47356c

Browse files
committed
Added integration tests from integration-test repo.
1 parent f1b2e73 commit c47356c

File tree

21 files changed

+6672
-1
lines changed

21 files changed

+6672
-1
lines changed

integration-tests/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store
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 node_modules
2+
npx gren make --optimize src/Main.gren --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/http-client/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.5.3",
8+
"dependencies": {
9+
"direct": {
10+
"gren-lang/core": "6.0.0",
11+
"gren-lang/node": "local:../.."
12+
},
13+
"indirect": {
14+
"gren-lang/url": "5.0.0"
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)