Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
g-plane committed Aug 12, 2024
1 parent 407c7ef commit 2febd36
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions strict.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ const e25 = document.querySelector('a_1-B')
const e26 = document.querySelector('div >')
const e27 = document.querySelector('^_^')
const e28 = document.querySelector('div, span')
const e29 = document.querySelector('div[, span')
const e30 = document.querySelector('div, span[')
const e31 = document.querySelector('div,')
const e32 = document.querySelector('div, .badge')
Expand Down Expand Up @@ -79,7 +78,6 @@ type Tests = [
Expect<Equal<typeof e26, never>>,
Expect<Equal<typeof e27, never>>,
Expect<Equal<typeof e28, HTMLDivElement | HTMLSpanElement | null>>,
Expect<Equal<typeof e29, never>>,
Expect<Equal<typeof e30, never>>,
Expect<Equal<typeof e31, never>>,
Expect<Equal<typeof e32, HTMLDivElement | Element | null>>,
Expand Down

0 comments on commit 2febd36

Please sign in to comment.