mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
14 lines
456 B
JavaScript
14 lines
456 B
JavaScript
const should = require("should");
|
|
const sinon = require("sinon");
|
|
const NR_TEST_UTILS = require("nr-test-utils");
|
|
|
|
const plugins = NR_TEST_UTILS.require("@node-red/runtime/lib/plugins");
|
|
|
|
describe("runtime/plugins",function() {
|
|
|
|
it.skip("delegates all functions to registry module", function() {
|
|
// There's no easy way to test this as we can't stub the registry functions
|
|
// before the plugin module gets a reference to them
|
|
})
|
|
});
|