diff options
author | Girish Ramakrishnan <girish@cloudron.io> | 2019-10-18 17:46:01 -0700 |
---|---|---|
committer | Girish Ramakrishnan <girish@cloudron.io> | 2019-10-18 17:46:01 -0700 |
commit | ba8949963040e9238bb2d2b747b82e988c2cdd7e (patch) | |
tree | 72b3e8a9d3bf7f8f500639d023efb09edea5ee40 /test | |
parent | 511ce661de41d42ab427ab1e2f43cc9f2c84b6c7 (diff) | |
download | Surfer-ba8949963040e9238bb2d2b747b82e988c2cdd7e.tar.gz Surfer-ba8949963040e9238bb2d2b747b82e988c2cdd7e.tar.zst Surfer-ba8949963040e9238bb2d2b747b82e988c2cdd7e.zip |
fix test
Diffstat (limited to 'test')
-rw-r--r-- | test/test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.js b/test/test.js index dace05d..3610c05 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 | ||