Skip to content

Commit

Permalink
WIP test with latest jsdom
Browse files Browse the repository at this point in the history
  • Loading branch information
ctavan committed Jul 29, 2022
1 parent cb059ed commit 6b58c38
Show file tree
Hide file tree
Showing 5 changed files with 1,837 additions and 4,019 deletions.
5 changes: 4 additions & 1 deletion examples/jest-uuid-main/jsdom.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@

const uuid = require('uuid');

console.log(uuid.v4());
test('uuidv4()', () => {
const val = uuid.v4();
expect(val).toBeTruthy();
});
5 changes: 4 additions & 1 deletion examples/jest-uuid-main/node.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
const uuid = require('uuid');

console.log(uuid.v4());
test('uuidv4()', () => {
const val = uuid.v4();
expect(val).toBeTruthy();
});
Loading

0 comments on commit 6b58c38

Please sign in to comment.