Skip to content

Commit 7d10b9a

Browse files
committedAug 5, 2024
Add test report
1 parent 341ce12 commit 7d10b9a

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed
 

‎jest.config.js

+14-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,18 @@ module.exports = {
1212
isolatedModules: true
1313
}
1414
]
15-
}
15+
},
16+
// Other Jest configuration options
17+
reporters: [
18+
'default',
19+
[
20+
'jest-html-reporter',
21+
{
22+
pageTitle: 'SQLite Cloud Driver Test Report',
23+
outputPath: 'reports/test-report.html',
24+
includeFailureMsg: true,
25+
includeConsoleLog: true
26+
}
27+
]
28+
]
1629
}

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sqlitecloud/drivers",
3-
"version": "1.0.214",
3+
"version": "1.0.217",
44
"description": "SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients",
55
"main": "./lib/index.js",
66
"types": "./lib/index.d.ts",

0 commit comments

Comments
 (0)
Please sign in to comment.