mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
tests: path to request require fix
This commit is contained in:
parent
f84837ef9b
commit
4497d37af9
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ const host = 'http://127.0.0.1:'+settings.port;
|
|||
const api = supertest('http://'+settings.ip+":"+settings.port);
|
||||
const path = require('path');
|
||||
const async = require(__dirname+'/../../../../src/node_modules/async');
|
||||
const request = require('request');
|
||||
const request = require(__dirname+'/../../../../src/node_modules/request');
|
||||
const padText = fs.readFileSync("../tests/backend/specs/api/test.txt");
|
||||
const wordDoc = fs.readFileSync("../tests/backend/specs/api/test.doc");
|
||||
var filePath = path.join(__dirname, '../../../../APIKEY.txt');
|
||||
|
|
Loading…
Reference in a new issue