aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGirish Ramakrishnan <girish@cloudron.io>2019-10-18 17:49:52 -0700
committerGirish Ramakrishnan <girish@cloudron.io>2019-10-18 17:49:52 -0700
commitefdc0490694375fece7804c70877fb238a91a8eb (patch)
tree630a63bf9dee7f47d94daf2abfa5062d9a571713
parentba8949963040e9238bb2d2b747b82e988c2cdd7e (diff)
downloadSurfer-efdc0490694375fece7804c70877fb238a91a8eb.tar.gz
Surfer-efdc0490694375fece7804c70877fb238a91a8eb.tar.zst
Surfer-efdc0490694375fece7804c70877fb238a91a8eb.zip
Fix test
-rw-r--r--test/test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.js b/test/test.js
index 3610c05..979ffde 100644
--- a/test/test.js
+++ b/test/test.js
@@ -131,7 +131,7 @@ describe('Application life cycle test', function () {
131 function uploadFile(name, done) { 131 function uploadFile(name, done) {
132 // File upload can't be tested with selenium, since the file input is not visible and thus can't be interacted with :-( 132 // File upload can't be tested with selenium, since the file input is not visible and thus can't be interacted with :-(
133 133
134 execSync(path.join(__dirname, '/../cli/surfer.js') + ' put ' + path.join(__dirname, name) + '/', { stdio: 'inherit' } ); 134 execSync(path.join(__dirname, '/../cli/surfer.js') + ' put ' + path.join(__dirname, name) + ' /', { stdio: 'inherit' } );
135 done(); 135 done();
136 } 136 }
137 137