Fix tests to not depend on exact EOL chars

Fix the tests to not check for EOL character(s) in the response body,
in order to fix tests failing on Windows.
This commit is contained in:
Miroslav Bajtoš 2016-09-22 14:42:39 +02:00
parent b49818d60e
commit 6e288a991c
1 changed files with 19 additions and 10 deletions

View File

@ -144,7 +144,7 @@ describe('explorer', function() {
if (err) return done(err); if (err) return done(err);
// expect the content of `dummy-swagger-ui/swagger-ui.js` // expect the content of `dummy-swagger-ui/swagger-ui.js`
expect(res.text).to.contain('/* custom swagger-ui file */' + os.EOL); expect(res.text).to.contain('/* custom swagger-ui file */');
done(); done();
}); });
@ -153,9 +153,12 @@ describe('explorer', function() {
it('overrides strongloop overrides', function(done) { it('overrides strongloop overrides', function(done) {
request(app).get('/explorer/') request(app).get('/explorer/')
.expect(200) .expect(200)
// expect the content of `dummy-swagger-ui/index.html` .end(function(err, res) {
.expect('custom index.html' + os.EOL) if (err) return done(er);
.end(done); // expect the content of `dummy-swagger-ui/index.html`
expect(res.text).to.contain('custom index.html');
done();
});
}); });
}); });
@ -231,9 +234,12 @@ describe('explorer', function() {
request(app).get('/explorer/') request(app).get('/explorer/')
.expect(200) .expect(200)
// expect the content of `dummy-swagger-ui/index.html` .end(function(err, res) {
.expect('custom index.html' + os.EOL) if (err) return done(err);
.end(done); // expect the content of `dummy-swagger-ui/index.html`
expect(res.text).to.contain('custom index.html');
done();
});
}); });
it('should allow `uiDirs` to be defined as an String', function(done) { it('should allow `uiDirs` to be defined as an String', function(done) {
@ -243,9 +249,12 @@ describe('explorer', function() {
request(app).get('/explorer/') request(app).get('/explorer/')
.expect(200) .expect(200)
// expect the content of `dummy-swagger-ui/index.html` .end(function(err, res) {
.expect('custom index.html' + os.EOL) if (err) return done(err);
.end(done); // expect the content of `dummy-swagger-ui/index.html`
expect(res.text).to.contain('custom index.html');
done();
});
}); });
}); });