Skip to content
This repository was archived by the owner on Nov 7, 2024. It is now read-only.

Commit fba8150

Browse files
committed
テストコードの no-non-null-assertion lintエラーに対応した。
1 parent 9f5c98a commit fba8150

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

__tests__/$$.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ describe('$$()', () => {
1111
document.body.innerHTML = `<div><p><span>hoge</span><span>hoge</span><span>hoge</span></p><p id="context"><span>fuga</span><span>fuga</span><span>fuga</span></p><p><span>piyo</span><span>piyo</span><span>piyo</span></p></div>`
1212

1313
const contextEl = $<HTMLParagraphElement>('#context')
14-
expect(Array.from($$('span', contextEl!))).toMatchSnapshot()
14+
expect(contextEl && Array.from($$('span', contextEl))).toMatchSnapshot()
1515
})
1616
})

__tests__/$.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ describe('$()', () => {
1111
document.body.innerHTML = `<div><p><span>hoge</span></p><p id="context"><span>fuga</span></p><p><span>piyo</span></p></div>`
1212

1313
const contextEl = $<HTMLParagraphElement>('#context')
14-
expect($('span', contextEl!)).toMatchSnapshot()
14+
expect(contextEl && $('span', contextEl)).toMatchSnapshot()
1515
})
1616
})

0 commit comments

Comments
 (0)