Allow camera engines to signal events to the card.

This commit is contained in:
Dermot Duffy
2024-03-03 15:40:20 -08:00
parent 305a2db573
commit 88bea0ae7d
61 changed files with 7480 additions and 4213 deletions
+10 -5
View File
@@ -3,17 +3,22 @@ import { defineConfig } from 'vitest/config';
// ts-prune-ignore-next
export default defineConfig({
test: {
include: [
"tests/**/*.test.ts"
],
coverage: {
// Favor istanbul for coverage over v8 due to better accuracy.
provider: 'istanbul',
// Thresholds will automatically be updated as coverage improves to avoid
// back-sliding.
thresholdAutoUpdate: true,
statements: 73.59,
branches: 63.6,
functions: 74.86,
lines: 73.48,
thresholds: {
autoUpdate: true,
statements: 73.59,
branches: 63.6,
functions: 74.86,
lines: 73.48,
},
},
},
});