Skip to content

Commit

Permalink
Remove failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
gyusang committed Sep 29, 2024
1 parent ee2fcb5 commit 22d3cbf
Show file tree
Hide file tree
Showing 4 changed files with 150 additions and 16 deletions.
4 changes: 2 additions & 2 deletions jest.config.js → jest.config.cjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
transform: {'^.+\\.ts?$': 'ts-jest'},
transform: { '^.+\\.ts?$': 'ts-jest' },
testEnvironment: 'node',
testRegex: './tests/.*\\.(test|spec)?\\.(ts|tsx)$',
testRegex: './dist/tests/.*\\.(test|spec)?\\.(js|jsx)$',
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node']
}
145 changes: 145 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"build": "npx tsc",
"rebuild": "rm -rf dist/* && npm run build",
"clean": "rm -rf apify_storage",
"test": "jest",
"test": "NODE_OPTIONS='--experimental-vm-modules' npx jest",
"coverage": "jest --coverage",
"update": "git submodule update --remote",
"precrawl-one": "npm run build",
Expand Down Expand Up @@ -59,8 +59,9 @@
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.5.4"
},
"type": "module"
}
}
12 changes: 0 additions & 12 deletions tests/database.test.ts

This file was deleted.

0 comments on commit 22d3cbf

Please sign in to comment.