Skip to content

Commit a0ec558

Browse files
committed
test: restore default reporter, the custom reporter was not really needed and was causing multiple issues
1 parent d4d768a commit a0ec558

File tree

3 files changed

+3
-73
lines changed

3 files changed

+3
-73
lines changed

jest-custom-reporter.js

Lines changed: 0 additions & 70 deletions
This file was deleted.

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = {
1414
]
1515
},
1616
reporters: [
17-
'./jest-custom-reporter.js',
17+
'default',
1818
[
1919
'jest-html-reporter',
2020
{

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@sqlitecloud/drivers",
3-
"version": "1.0.611",
3+
"version": "1.0.613",
44
"description": "SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients",
55
"main": "./lib/index.js",
66
"types": "./lib/index.d.ts",
77
"files": [
88
"lib/**/*"
99
],
1010
"scripts": {
11-
"test": "jest --forceExit --coverage --testPathIgnorePatterns=core",
11+
"test": "jest --silent --forceExit --coverage --testPathIgnorePatterns=core",
1212
"build": "rm -rf ./lib/ && tsc --project tsconfig.build.json && npx webpack",
1313
"publish": "npm run build && npm publish --access public",
1414
"prettier": "prettier --write 'src/**/*'",

0 commit comments

Comments
 (0)