Skip to content

Commit 6fada19

Browse files
test: CSS.supports returns true
1 parent 854d801 commit 6fada19

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

config/setupJest.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable no-undef */
22
if (globalThis.CSS === undefined) {
3-
globalThis.CSS = { supports: () => false }
3+
globalThis.CSS = { supports: () => true }
44
} else if (typeof globalThis.CSS.supports !== 'function') {
5-
globalThis.CSS.supports = () => false
5+
globalThis.CSS.supports = () => true
66
}

0 commit comments

Comments
 (0)