Skip to content

Commit

Permalink
chore: improve testExternalConverter.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Oct 16, 2024
1 parent d12b117 commit dbda148
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/testExternalConverter.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ const sandbox = {
};
vm.runInNewContext(moduleCode, sandbox, moduleFakePath);
const converter = sandbox.module.exports;
assert(!converter.toZigbee.includes(undefined));
assert(!converter.fromZigbee.includes(undefined));
assert(!converter.toZigbee || !converter.toZigbee.includes(undefined));
assert(!converter.fromZigbee || !converter.fromZigbee.includes(undefined));

0 comments on commit dbda148

Please sign in to comment.