Skip to content

Commit

Permalink
chore: add comments in jest.config.js files
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsonevv committed Apr 25, 2024
1 parent 334c039 commit 90cb029
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/wallet-account/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ module.exports = {
projects: [
{
displayName: "dom",
testEnvironment: "jsdom",
testEnvironment: "jsdom", // runs tests in a browser-like environment
testMatch: [
"**/test/**/*.test.js?(x)",
"**/test/**/*.test.dom.js?(x)",
],
},
{
displayName: "node",
testEnvironment: "node",
testEnvironment: "node", // runs tests in a Node.js environment
testMatch: [
"**/test/**/*.test.js?(x)",
"**/test/**/*.test.node.js?(x)",
Expand Down

0 comments on commit 90cb029

Please sign in to comment.