We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec3e49 commit bb6a0e1Copy full SHA for bb6a0e1
package.json
@@ -36,7 +36,6 @@
36
},
37
"dependencies": {
38
"@types/node": "^12.20.24",
39
- "code-engine-sdk-demo": "file:example",
40
"extend": "^3.0.2",
41
"ibm-cloud-sdk-core": "^2.14.1"
42
test-integration.sh
@@ -7,10 +7,11 @@
7
echo "Running integration tests..."
8
9
# Setup example package
10
-npm install -p example
+cd example
11
+npm install
12
13
# Run example, get exit code
-exampleoutput=$(node example/example.js)
14
+exampleoutput=$(node ./example.js)
15
exampleexit=$?
16
if [ $exampleexit -ne 0 ]; then
17
echo "Integration tests failed with exit code $exampleexit"
0 commit comments