Skip to content

Commit

Permalink
chore: repair run_static_server.js (#6298)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s committed Apr 23, 2021
1 parent a1f9152 commit f63f92b
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -16,12 +16,12 @@
*/

const path = require('path');
const {TestServer} = require('../utils/testserver/');
const {TestServer} = require('.');

const port = 8907;
const httpsPort = 8908;
const assetsPath = path.join(__dirname, 'assets');
const cachedPath = path.join(__dirname, 'assets', 'cached');
const assetsPath = path.join(__dirname, '../../tests/assets');
const cachedPath = path.join(__dirname, '../../tests/assets/cached');

Promise.all([
TestServer.create(assetsPath, port),
Expand Down

0 comments on commit f63f92b

Please sign in to comment.