Merge pull request #1891 from camlow325/resolve-example-path-for-windows-support

Resolve path when sending example file for Windows support
This commit is contained in:
Nick O'Leary
2018-09-28 13:18:53 +01:00
committed by GitHub
2 changed files with 6 additions and 4 deletions

View File

@@ -225,7 +225,7 @@ describe("api/editor/library", function() {
throw err;
}
res.body.should.have.property('sendFile',
'node-module:example-one');
fspath.resolve('node-module') + ':example-one');
done();
});
});
@@ -243,7 +243,8 @@ describe("api/editor/library", function() {
throw err;
}
res.body.should.have.property('sendFile',
'@org_scope/node_package:example-one');
fspath.resolve('@org_scope/node_package') +
':example-one');
done();
});
});