1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Remove old locales test

This commit is contained in:
Nick O'Leary 2018-04-30 11:05:39 +01:00
parent 42516206d9
commit b22956bd99
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -71,49 +71,49 @@ describe("api/editor/locales", function() {
}); });
}); });
describe('get all node resource catalogs',function() { // describe('get all node resource catalogs',function() {
var app; // var app;
before(function() { // before(function() {
// bit of a mess of internal workings // // bit of a mess of internal workings
sinon.stub(i18n,'catalog',function(namespace, lang) { // sinon.stub(i18n,'catalog',function(namespace, lang) {
return { // return {
"node-red": "should not return", // "node-red": "should not return",
"test-module-a-id": "test-module-a-catalog", // "test-module-a-id": "test-module-a-catalog",
"test-module-b-id": "test-module-b-catalog", // "test-module-b-id": "test-module-b-catalog",
"test-module-c-id": "test-module-c-catalog" // "test-module-c-id": "test-module-c-catalog"
}[namespace] // }[namespace]
}); // });
locales.init({ // locales.init({
nodes: { // nodes: {
getNodeList: function(opts) { // getNodeList: function(opts) {
return Promise.resolve([ // return Promise.resolve([
{module:"node-red",id:"node-red-id"}, // {module:"node-red",id:"node-red-id"},
{module:"test-module-a",id:"test-module-a-id"}, // {module:"test-module-a",id:"test-module-a-id"},
{module:"test-module-b",id:"test-module-b-id"} // {module:"test-module-b",id:"test-module-b-id"}
]); // ]);
} // }
} // }
}); // });
app = express(); // app = express();
app.get("/locales/nodes",locales.getAllNodes); // app.get("/locales/nodes",locales.getAllNodes);
}); // });
after(function() { // after(function() {
i18n.catalog.restore(); // i18n.catalog.restore();
}) // })
it('returns with the node catalogs', function(done) { // it('returns with the node catalogs', function(done) {
request(app) // request(app)
.get("/locales/nodes") // .get("/locales/nodes")
.expect(200) // .expect(200)
.end(function(err,res) { // .end(function(err,res) {
if (err) { // if (err) {
return done(err); // return done(err);
} // }
res.body.should.eql({ // res.body.should.eql({
'test-module-a-id': 'test-module-a-catalog', // 'test-module-a-id': 'test-module-a-catalog',
'test-module-b-id': 'test-module-b-catalog' // 'test-module-b-id': 'test-module-b-catalog'
}); // });
done(); // done();
}); // });
}); // });
}); // });
}); });