liudong
2023-05-29 340f156319b863525e50e900c58e59b86ecb3d5e
1
2
3
4
5
6
7
8
9
10
11
12
13
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
    })
});