Merge pull request #180 from strongloop/update-lb-3-rc

Update deps to loopback 3.0.0 RC
This commit is contained in:
Miroslav Bajtoš 2016-09-22 15:03:13 +02:00 committed by GitHub
commit 1fa6754c23
2 changed files with 20 additions and 11 deletions

View File

@ -26,7 +26,7 @@
"chai": "^3.2.0",
"eslint": "^2.8.0",
"eslint-config-loopback": "^2.0.0",
"loopback": "^3.0.0-alpha.4",
"loopback": "^3.0.0",
"mocha": "^2.2.5",
"supertest": "^1.0.1"
},

View File

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