fix: manifest test + remove duplicate test

v1.18.x
psychobunny 4 years ago
parent 3fbddbe2ca
commit bf3c1c0878

@ -359,8 +359,8 @@ describe('Controllers', function () {
}); });
}); });
it('should load /manifest.json', function (done) { it('should load /manifest.webmanifest', function (done) {
request(nconf.get('url') + '/manifest.json', function (err, res, body) { request(nconf.get('url') + '/manifest.webmanifest', function (err, res, body) {
assert.ifError(err); assert.ifError(err);
assert.equal(res.statusCode, 200); assert.equal(res.statusCode, 200);
assert(body); assert(body);
@ -633,15 +633,6 @@ describe('Controllers', function () {
}); });
}); });
it('should load manifest.json', function (done) {
request(nconf.get('url') + '/manifest.json', function (err, res, body) {
assert.ifError(err);
assert.equal(res.statusCode, 200);
assert(body);
done();
});
});
it('should load theme screenshot', function (done) { it('should load theme screenshot', function (done) {
request(nconf.get('url') + '/css/previews/nodebb-theme-persona', function (err, res, body) { request(nconf.get('url') + '/css/previews/nodebb-theme-persona', function (err, res, body) {
assert.ifError(err); assert.ifError(err);

Loading…
Cancel
Save