Skip to content

Commit 5c57b06

Browse files
committed
implement test name changes
Signed-off-by: wwanarif <wan.abdul.hakim.b.wan.arif@intel.com>
1 parent 44ceaff commit 5c57b06

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/playwright/studio-e2e/005_test_funetuning_rerank.spec.ts renamed to tests/playwright/studio-e2e/005_test_finetuning_rerank.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async function setupResponseListener(page, apiResponse) {
2828
});
2929
}
3030

31-
test('005_test_funetuning_rerank', async ({ browser, baseURL }) => {
31+
test('005_test_finetuning_rerank', async ({ browser, baseURL }) => {
3232
test.setTimeout(1200000);
3333
let apiResponse = { value: '' };
3434
const context = await browser.newContext({

tests/playwright/studio-e2e/006_test_funetuning_embedding.spec.ts renamed to tests/playwright/studio-e2e/006_test_finetuning_embedding.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async function setupResponseListener(page, apiResponse) {
2828
});
2929
}
3030

31-
test('006_test_funetuning_embedding', async ({ browser, baseURL }) => {
31+
test('006_test_finetuning_embedding', async ({ browser, baseURL }) => {
3232
test.setTimeout(1200000);
3333
let apiResponse = { value: '' };
3434
const context = await browser.newContext({

tests/playwright/studio-e2e/007_test_funetuning_reasoning.spec.ts renamed to tests/playwright/studio-e2e/007_test_finetuning_reasoning.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async function setupResponseListener(page, apiResponse) {
2828
});
2929
}
3030

31-
test('007_test_funetuning_reasoning', async ({ browser, baseURL }) => {
31+
test('007_test_finetuning_reasoning', async ({ browser, baseURL }) => {
3232
test.setTimeout(1200000);
3333
let apiResponse = { value: '' };
3434
const context = await browser.newContext({

tests/playwright/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export async function waitForStatusText(page: any, selector: string, statusText:
44
for (let i = 0; i < maxAttempts; i++) {
55
try {
66
const text = await page.locator(selector).first().innerText();
7-
if (text === 'Error' ||text === 'failed') {
7+
if (text === 'Error' || text === 'failed') {
88
throw new Error(`Encountered unwanted status text "Error" in element "${selector}"`);
99
}
1010
await expect(page.locator(selector).first()).toHaveText(statusText, { timeout: intervalTimeout });

0 commit comments

Comments
 (0)