Skip to content

Commit 244c512

Browse files
committed
feat(Test): Add end to end test as another package
1 parent f0b6dc4 commit 244c512

File tree

3 files changed

+256
-0
lines changed

3 files changed

+256
-0
lines changed

packages/e2e/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
app/

packages/e2e/package-lock.json

Lines changed: 238 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/e2e/package.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "e2e",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"pretest": "rimraf app",
8+
"test": "create-ts-lib app && cd app && npm test"
9+
},
10+
"dependencies": {
11+
"create-ts-lib": "^0.0.11",
12+
"rimraf": "^2.6.2"
13+
},
14+
"keywords": [],
15+
"author": "",
16+
"license": "ISC"
17+
}

0 commit comments

Comments
 (0)