Skip to content

Commit 1bbcb09

Browse files
committed
chore: fix failing ci
1 parent 0bbf362 commit 1bbcb09

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/docs/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"strict": true,
2121
"strictNullChecks": true,
2222
"allowJs": true,
23+
"allowImportingTsExtensions": true,
2324
"target": "esnext",
2425
"types": [
2526
"vite/client",

packages/vuetify/src/util/__tests__/colorUtils.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ describe('APCAcontrast', () => {
230230
it.each([
231231
['#888', '#fff', 66.89346308821438],
232232
['#aaa', '#000', -60.438571788907524],
233-
['#def', '#123', -98.44863435731264],
233+
['#def', '#123', -98.44863435731266],
234234
['#123', '#234', 1.276075977788573],
235235
])('%s on %s', (text, bg, expected) => {
236236
expect(APCAcontrast(parseColor(text), parseColor(bg))).toBe(expected)

0 commit comments

Comments
 (0)