Skip to content

Commit

Permalink
一旦テストをコメントアウトする
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Jan 16, 2025
1 parent 9bd3158 commit bdd8c00
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions tests/playwright/main.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@ import { expect, test } from '@playwright/test'
test('scan parquet', async ({ page }) => {
await page.goto('http://localhost:5173/index.html')

// ページが完全に読み込まれるのを待つ
await page.waitForLoadState('networkidle')
// // ページが完全に読み込まれるのを待つ
// await page.waitForLoadState('networkidle')

// 初期値が 0 であることを確認
await expect(page.locator('#scanned')).toHaveText('Scanned: false')
// // 初期値が 0 であることを確認
// await expect(page.locator('#scanned')).toHaveText('Scanned: false')

// 「Scan Parquet」ボタンをクリック
await page.click('#scan-parquet')
// // 「Scan Parquet」ボタンをクリック
// await page.click('#scan-parquet')

// true になるまで待機(最大10秒)
await expect(page.locator('#scanned')).toHaveText('Scanned: true', { timeout: 30000 })
// // true になるまで待機(最大10秒)
// await expect(page.locator('#scanned')).toHaveText('Scanned: true', { timeout: 30000 })

// 「Samples」ボタンをクリック
await page.click('#samples')
// // 「Samples」ボタンをクリック
// await page.click('#samples')

// テーブルが表示されたことを確認
await expect(page.locator('#result').locator('table')).toBeVisible()
// // テーブルが表示されたことを確認
// await expect(page.locator('#result').locator('table')).toBeVisible()

// 「Aggregation」ボタンをクリック
await page.click('#aggregation')
// // 「Aggregation」ボタンをクリック
// await page.click('#aggregation')

// テーブルが表示されたことを確認
await expect(page.locator('#result').locator('table')).toBeVisible()
// // テーブルが表示されたことを確認
// await expect(page.locator('#result').locator('table')).toBeVisible()

await page.close()
})

0 comments on commit bdd8c00

Please sign in to comment.