mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-03 06:47:55 +00:00
10 lines
343 B
TypeScript
10 lines
343 B
TypeScript
![]() |
import noop from '@datahub/entity-deprecation/utils/functions/noop';
|
||
|
import { module, test } from 'qunit';
|
||
|
|
||
|
module('Unit | Utility | functions/noop', function(/*hooks*/) {
|
||
|
test('it exists', function(assert) {
|
||
|
assert.ok(typeof noop === 'function');
|
||
|
assert.ok(noop() === undefined, 'Noop function does not return anything');
|
||
|
});
|
||
|
});
|