Skip to content

Commit

Permalink
fix(console): remove dep case and force install (#2348)
Browse files Browse the repository at this point in the history
  • Loading branch information
waynelwz authored Jun 13, 2023
1 parent 819a42d commit 0c605a5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
2 changes: 1 addition & 1 deletion console/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rebuild-gradio:
export NODE_OPTIONS="--max_old_space_size=4096" && \
export NODE_OPTIONS="--max-old-space-size=4096" && \
cd gradio/ui && \
pnpm i --fix-lockfile && \
pnpm i --fix-lockfile --force && \
pnpm build && \
cd ../.. && \
rm -rf src/assets/GradioWidget && mkdir -p src/assets/GradioWidget && \
Expand Down
11 changes: 0 additions & 11 deletions console/playwright/tests/guest-project.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,4 @@ test.describe('Project list', () => {
await page.locator(SELECTOR.projectCardDeleteConfirm).click()
await expect(p).not.toBeVisible()
})

test('should project navigate to evaluations when click project name', async () => {
await page.locator(SELECTOR.projectCardLink).click()
await expect(page).toHaveURL(ROUTES.evaluations)
})
})

// test.describe('Auth', () => {
// test('none admin should have no create button', async () => {
// await expect(page.locator(SELECTOR.listCreate)).toBeHidden()
// })
// })

0 comments on commit 0c605a5

Please sign in to comment.