2014-07-17 09:34:26 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2014-07-17 09:34:26 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
var should = require("should");
|
|
|
|
|
2018-08-20 17:17:24 +02:00
|
|
|
var NR_TEST_UTILS = require("nr-test-utils");
|
|
|
|
|
2020-12-02 10:25:10 +01:00
|
|
|
describe("@node-red/util/events", function() {
|
2014-07-17 09:34:26 +02:00
|
|
|
it('can be required without errors', function() {
|
2020-12-02 10:25:10 +01:00
|
|
|
NR_TEST_UTILS.require("@node-red/util/lib/events");
|
2014-07-17 09:34:26 +02:00
|
|
|
});
|
2015-11-12 08:56:23 +01:00
|
|
|
it.skip('more tests needed', function(){})
|
2014-07-17 09:34:26 +02:00
|
|
|
});
|