build: enhance nx build (#2948)

This commit is contained in:
Alex Yang
2023-07-03 12:06:56 +08:00
parent d24009f494
commit d120f3ada8
27 changed files with 559 additions and 138 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ test('goto not found page', async ({ page }) => {
const currentUrl = page.url();
const invalidUrl = currentUrl.replace(/\/$/, '') + '/invalid';
await page.goto(invalidUrl);
expect(await page.getByTestId('notFound').isVisible()).toBeTruthy();
await expect(page.getByTestId('notFound').isVisible()).toBeTruthy();
});
test('goto not found workspace', async ({ page }) => {