mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 15:36:16 -04:00
tests: fix for fix of fuzz tests
Commenting out fuzz tests for now Fixed up paths with request.. Pesky globals..
This commit is contained in:
parent
71bffed190
commit
0dd9db4e99
2 changed files with 14 additions and 14 deletions
|
@ -158,8 +158,8 @@ describe('Imports and Exports', function(){
|
|||
});
|
||||
});
|
||||
|
||||
if(!settings.abiword && !settings.soffice){
|
||||
console.warn("Did not test abiword or soffice");
|
||||
if(settings.abiword.indexOf("/" === -1) && settings.soffice.indexOf("/" === -1)){
|
||||
console.log("Did not test abiword or soffice");
|
||||
}else{
|
||||
it('Tries to import file type that uses soffice or abioffice', function(done) {
|
||||
|
||||
|
@ -188,7 +188,7 @@ describe('Imports and Exports', function(){
|
|||
let form = req.form();
|
||||
|
||||
form.append('file', wordDoc, {
|
||||
filename: '/test.doc',
|
||||
filename: '/tmp/test.doc',
|
||||
contentType: 'application/msword'
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue