Skip to content

Commit 4836053

Browse files
committed
chore: Move tests to "test" folder
1 parent 492ab2c commit 4836053

File tree

7 files changed

+4
-4
lines changed

7 files changed

+4
-4
lines changed

.github/workflows/nodejs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
node-version: ${{ matrix.node-version }}
2121
- name: Install Dependencies
22-
run: npm install && cd tests/src && npm install && cd ../../
22+
run: npm install && cd test/src && npm install && cd ../../
2323
- name: Run Integration Tests
2424
run: npm test
2525
env:

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
/src/_src/package-lock.json
99
/src/node_modules
1010
/src/package-lock.json
11-
/tests/src/node_modules
12-
/tests/src/package-lock.json
11+
/test/src/node_modules
12+
/test/src/package-lock.json
1313

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"author": "Serverless, Inc.",
55
"license": "Apache",
66
"scripts": {
7-
"test": "jest ./tests/integration.test.js --testEnvironment node",
7+
"test": "jest ./test/integration.test.js --testEnvironment node",
88
"lint": "eslint . --fix --cache"
99
},
1010
"devDependencies": {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)