fix: sort ApeX vaults by TVL by default #4069
javascript.yml
on: pull_request
build
upload-sourcemaps
0s
Annotations
3 errors, 3 warnings, and 2 notices
|
tests/integration/vaults/datasets.test.ts:89:2 › vault datasets page › displays validated API key in the page:
tests/integration/vaults/datasets.test.ts#L92
2) tests/integration/vaults/datasets.test.ts:89:2 › vault datasets page › displays validated API key in the page
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toBeVisible() failed
Locator: getByText('test-valid-api-key-12345', { exact: true })
Expected: visible
Timeout: 5000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 5000ms
- waiting for getByText('test-valid-api-key-12345', { exact: true })
- waiting for" http://localhost:4173/vaults/datasets?apiKey=test-valid-api-key-12345" navigation to finish...
- navigated to "http://localhost:4173/vaults/datasets?apiKey=test-valid-api-key-12345"
90 | await page.getByLabel('Enter API key to enable download').fill(VALID_API_KEY);
91 | await page.getByRole('button', { name: 'Enter' }).click();
> 92 | await expect(page.getByText(VALID_API_KEY, { exact: true })).toBeVisible();
| ^
93 | });
94 |
95 | test('curl example shows actual key after successful validation', async ({ page }) => {
at /home/runner/work/frontend/frontend/tests/integration/vaults/datasets.test.ts:92:64
|
|
tests/integration/vaults/datasets.test.ts:89:2 › vault datasets page › displays validated API key in the page:
tests/integration/vaults/datasets.test.ts#L92
2) tests/integration/vaults/datasets.test.ts:89:2 › vault datasets page › displays validated API key in the page
Error: expect(locator).toBeVisible() failed
Locator: getByText('test-valid-api-key-12345', { exact: true })
Expected: visible
Timeout: 5000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 5000ms
- waiting for getByText('test-valid-api-key-12345', { exact: true })
90 | await page.getByLabel('Enter API key to enable download').fill(VALID_API_KEY);
91 | await page.getByRole('button', { name: 'Enter' }).click();
> 92 | await expect(page.getByText(VALID_API_KEY, { exact: true })).toBeVisible();
| ^
93 | });
94 |
95 | test('curl example shows actual key after successful validation', async ({ page }) => {
at /home/runner/work/frontend/frontend/tests/integration/vaults/datasets.test.ts:92:64
|
|
tests/integration/vaults/datasets.test.ts:69:2 › vault datasets page › shows error message for invalid API key:
tests/integration/vaults/datasets.test.ts#L72
1) tests/integration/vaults/datasets.test.ts:69:2 › vault datasets page › shows error message for invalid API key
Error: expect(locator).toBeVisible() failed
Locator: getByText('The API key is not valid')
Expected: visible
Timeout: 5000ms
Error: element(s) not found
Call log:
- Expect "toBeVisible" with timeout 5000ms
- waiting for getByText('The API key is not valid')
70 | await page.getByLabel('Enter API key to enable download').fill(INVALID_API_KEY);
71 | await page.getByRole('button', { name: 'Enter' }).click();
> 72 | await expect(page.getByText('The API key is not valid')).toBeVisible();
| ^
73 | });
74 |
75 | test('download links become active after valid API key entry', async ({ page }) => {
at /home/runner/work/frontend/frontend/tests/integration/vaults/datasets.test.ts:72:60
|
|
check-format
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/checkout@v4, actions/setup-node@v4, pnpm/action-setup@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
test-e2e
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/checkout@v4, actions/setup-node@v4, pnpm/action-setup@v4, webfactory/ssh-agent@v0.9.0. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
test
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/checkout@v4, actions/setup-node@v4, pnpm/action-setup@v4, webfactory/ssh-agent@v0.9.0. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
🎭 Playwright Run Summary
3 skipped
14 passed (24.0s)
|
|
🎭 Playwright Run Summary
2 flaky
tests/integration/vaults/datasets.test.ts:69:2 › vault datasets page › shows error message for invalid API key
tests/integration/vaults/datasets.test.ts:89:2 › vault datasets page › displays validated API key in the page
2 skipped
202 passed (1.9m)
|