Update eslint and eslint-config to latest

This commit is contained in:
Miroslav Bajtoš 2017-12-12 09:33:15 +01:00
parent fdb453943a
commit 73cc950b1b
No known key found for this signature in database
GPG Key ID: 6F2304BA9361C7E3
32 changed files with 1277 additions and 1287 deletions

View File

@ -68,14 +68,14 @@
"cookie-parser": "^1.3.4", "cookie-parser": "^1.3.4",
"coveralls": "^2.11.15", "coveralls": "^2.11.15",
"dirty-chai": "^1.2.2", "dirty-chai": "^1.2.2",
"eslint-config-loopback": "^8.0.0", "eslint-config-loopback": "^10.0.0",
"express-session": "^1.14.0", "express-session": "^1.14.0",
"grunt": "^1.0.1", "grunt": "^1.0.1",
"grunt-browserify": "^5.0.0", "grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0", "grunt-cli": "^1.2.0",
"grunt-contrib-uglify": "^2.0.0", "grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0", "grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0", "grunt-eslint": "^20.1.0",
"grunt-karma": "^2.0.0", "grunt-karma": "^2.0.0",
"grunt-mocha-test": "^0.12.7", "grunt-mocha-test": "^0.12.7",
"karma": "^1.1.2", "karma": "^1.1.2",

View File

@ -649,7 +649,7 @@ describe('app.enableAuth()', function() {
}); });
}); });
it('prevent remote call with app setting status on denied ACL', function(done) { it('denies remote call with app setting status 403', function(done) {
createTestAppAndRequest(this.token, {app: {aclErrorStatus: 403}}, done) createTestAppAndRequest(this.token, {app: {aclErrorStatus: 403}}, done)
.del('/tests/123') .del('/tests/123')
.expect(403) .expect(403)
@ -667,7 +667,7 @@ describe('app.enableAuth()', function() {
}); });
}); });
it('prevent remote call with app setting status on denied ACL', function(done) { it('denies remote call with app setting status 404', function(done) {
createTestAppAndRequest(this.token, {model: {aclErrorStatus: 404}}, done) createTestAppAndRequest(this.token, {model: {aclErrorStatus: 404}}, done)
.del('/tests/123') .del('/tests/123')
.expect(404) .expect(404)

View File

@ -523,7 +523,7 @@ describe('app', function() {
}); });
}); });
it('scopes middleware to a list of scopes', function(done) { it('scopes middleware from config to a list of scopes', function(done) {
var steps = []; var steps = [];
app.middlewareFromConfig( app.middlewareFromConfig(
function factory() { function factory() {

View File

@ -15,7 +15,7 @@ describe('Application', function() {
Application.attachTo(loopback.memory()); Application.attachTo(loopback.memory());
}); });
it('honors `application.register` - promise variant', function(done) { it('honors `application.register` - callback variant', function(done) {
Application.register('rfeng', 'MyTestApp', Application.register('rfeng', 'MyTestApp',
{description: 'My test application'}, function(err, result) { {description: 'My test application'}, function(err, result) {
var app = result; var app = result;

View File

@ -996,7 +996,7 @@ describe('relations - integration', function() {
}); });
}); });
it('returns the embedded models', function(done) { it('includes the created embedded model', function(done) {
var url = '/api/todo-lists/' + this.todoList.id + '/items'; var url = '/api/todo-lists/' + this.todoList.id + '/items';
this.get(url) this.get(url)
@ -1311,7 +1311,7 @@ describe('relations - integration', function() {
}); });
}); });
it('returns the referenced models - verify', function(done) { it('returns the referenced models without the deleted one', function(done) {
var url = '/api/recipes/' + this.recipe.id + '/ingredients'; var url = '/api/recipes/' + this.recipe.id + '/ingredients';
var test = this; var test = this;
@ -1370,7 +1370,7 @@ describe('relations - integration', function() {
}); });
}); });
it('returns the referenced models - verify', function(done) { it('returns the referenced models without the unlinked one', function(done) {
var url = '/api/recipes/' + this.recipe.id + '/ingredients'; var url = '/api/recipes/' + this.recipe.id + '/ingredients';
var test = this; var test = this;

View File

@ -977,16 +977,6 @@ describe('role model', function() {
done(); done();
}); });
}); });
it('should report isMappedToRole by app.name', function(done) {
ACL.isMappedToRole(ACL.APP, app.name, 'admin', function(err, flag) {
if (err) return done(err);
expect(flag).to.eql(true);
done();
});
});
}); });
describe('listByPrincipalType', function() { describe('listByPrincipalType', function() {