Skip to content

Commit 8f32937

Browse files
committed
適当なテスト追加
1 parent d151af3 commit 8f32937

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

e2e/top.test.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,12 @@ describe('test typing-lyrics top page', () => {
3939
const captionText = await captionElement.getText()
4040
assert.equal(captionText.includes('UTAWO UTAOU'), true)
4141
})
42+
43+
it('get caption container', async () => {
44+
const captionElement = await driver.findElement(
45+
selenium.By.className('caption-container')
46+
)
47+
const visible = await captionElement.isDisplayed()
48+
assert.equal(visible, true)
49+
})
4250
})

0 commit comments

Comments
 (0)