We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab0b7de commit cd96cafCopy full SHA for cd96caf
appveyor.yml
@@ -4,11 +4,8 @@ init:
4
Install-Product node 6
5
6
npm i -g serverless
7
-build: off
8
-test_script:
9
-- cmd: >-
10
- cd example
11
12
npm i
13
-
14
- sls package --pythonBin=c:/python36/python.exe
+build: off
+test_script:
+- cmd: node test.js
package.json
@@ -38,13 +38,14 @@
38
"main": "index.js",
39
"bin": {},
40
"scripts": {
41
- "test": "bats test.bats",
+ "test": "node tests.js && bats test.bats",
42
"lint": "eslint *.js lib/*.js && prettier -l index.js lib/*.js || (echo need formatting ; exit 1)",
43
"format": "prettier --write index.js lib/*.js"
44
},
45
"devDependencies": {
46
"eslint": "*",
47
- "prettier": "*"
+ "prettier": "*",
48
+ "tape": "^4.9.1"
49
50
"dependencies": {
51
"appdirectory": "^0.1.0",
0 commit comments