added create collection testcase and few import testcases#8402
Open
aman-bruno wants to merge 1 commit into
Open
added create collection testcase and few import testcases#8402aman-bruno wants to merge 1 commit into
aman-bruno wants to merge 1 commit into
Annotations
6 errors, 1 warning, and 1 notice
|
Detect flaky tests
Process completed with exit code 1.
|
|
Run Playwright tests:
tests/shortcuts/request-actions.spec.ts#L278
4) [default] › tests/shortcuts/request-actions.spec.ts:261:11 › Shortcut Keys - BOUND_ACTIONS › REQUESTS › SHORTCUT: Change Orientation (customized Alt+Shift+Y) › customized Alt+Shift+Y change layout orientation
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: getByTestId('response-layout-toggle-btn')
Expected string: "Switch to horizontal layout"
Received string: "Switch to vertical layout"
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for getByTestId('response-layout-toggle-btn')
9 × locator resolved to <div title="Switch to vertical layout" data-testid="response-layout-toggle-btn">…</div>
- unexpected value "Switch to vertical layout"
276 | await expect(
277 | page.getByTestId('response-layout-toggle-btn')
> 278 | ).toHaveAttribute('title', 'Switch to horizontal layout');
| ^
279 |
280 | // Press Alt+Shift+Y to change layout
281 | await pressShortcut(page, 'Alt', 'Shift', 'KeyY');
at /home/runner/work/bruno/bruno/tests/shortcuts/request-actions.spec.ts:278:11
|
|
Run Playwright tests:
tests/import/postman/import-oauth2-implicit-grant-type.spec.ts#L35
3) [default] › tests/import/postman/import-oauth2-implicit-grant-type.spec.ts:22:7 › Import Postman Collection with OAuth2.0 Implicit Grant Type › should import Postman collection with OAuth2.0 Implicit Grant Type successfully › Open import collection modal
TimeoutError: locator.click: Timeout 30000ms exceeded.
Call log:
- waiting for getByTestId('collections-header-add-menu')
- locator resolved to <button tabindex="-1" aria-expanded="false" data-tabindex="inline" title="Add new collection" data-testid="collections-header-add-menu" class="StyledWrapper-iYvzMB btWNSr action-icon">…</button>
- attempting click action
2 × waiting for element to be visible, enabled and stable
- element is visible, enabled and stable
- scrolling into view if needed
- done scrolling
- <div class="bruno-modal-backdrop"></div> from <div class="StyledWrapper__Wrapper-jjqtyM DwvBf">…</div> subtree intercepts pointer events
- retrying click action
- waiting 20ms
2 × waiting for element to be visible, enabled and stable
- element is visible, enabled and stable
- scrolling into view if needed
- done scrolling
- <div class="bruno-modal-backdrop"></div> from <div class="StyledWrapper__Wrapper-jjqtyM DwvBf">…</div> subtree intercepts pointer events
- retrying click action
- waiting 100ms
58 × waiting for element to be visible, enabled and stable
- element is visible, enabled and stable
- scrolling into view if needed
- done scrolling
- <div class="bruno-modal-backdrop"></div> from <div class="StyledWrapper__Wrapper-jjqtyM DwvBf">…</div> subtree intercepts pointer events
- retrying click action
- waiting 500ms
33 |
34 | await test.step('Open import collection modal', async () => {
> 35 | await locators.plusMenu.button().click();
| ^
36 | await locators.plusMenu.importCollection().click();
37 | const importModal = locators.import.modal();
38 | await importModal.waitFor({ state: 'visible' });
at /home/runner/work/bruno/bruno/tests/import/postman/import-oauth2-implicit-grant-type.spec.ts:35:40
at /home/runner/work/bruno/bruno/tests/import/postman/import-oauth2-implicit-grant-type.spec.ts:34:16
|
|
Run Playwright tests:
tests/import/postman/import-oauth2-implicit-grant-type.spec.ts#L0
3) [default] › tests/import/postman/import-oauth2-implicit-grant-type.spec.ts:22:7 › Import Postman Collection with OAuth2.0 Implicit Grant Type › should import Postman collection with OAuth2.0 Implicit Grant Type successfully › Open import collection modal
Test timeout of 30000ms exceeded.
|
|
Run Playwright tests:
tests/import/insomnia/import-insomnia-v4-environments.spec.ts#L83
2) [default] › tests/import/insomnia/import-insomnia-v4-environments.spec.ts:19:7 › Import Insomnia v4 Collection - Environment Import › Import Insomnia v4 collection with nested environments and verify flattening › Test Base Environment - verify flattened keys
TimeoutError: locator.waitFor: Timeout 15000ms exceeded.
Call log:
- waiting for locator('input[value="user.roles[1]"]') to be visible
81 | // Waiting on the deepest asserted key here guarantees every shallower
82 | // input is also in DOM by the time the per-input asserts below run.
> 83 | await page.locator('input[value="user.roles[1]"]').waitFor({ state: 'visible', timeout: 15000 });
| ^
84 |
85 | // **Assertion 1: Basic Variables (Top-level keys)**
86 | // Verifies that simple key-value pairs from the base environment are imported correctly
at /home/runner/work/bruno/bruno/tests/import/insomnia/import-insomnia-v4-environments.spec.ts:83:58
at /home/runner/work/bruno/bruno/tests/import/insomnia/import-insomnia-v4-environments.spec.ts:70:5
|
|
Run Playwright tests:
tests/grpc/method-search/grpc-method-search.spec.ts#L11
1) [default] › tests/grpc/method-search/grpc-method-search.spec.ts:52:7 › Grpc Collection - Method Search Functionality › Search for grpc methods using the keyboard
Error: locator.click: Error: strict mode violation: getByText('GrpcEnv') resolved to 2 elements:
1) <span class="env-text max-w-24 truncate overflow-hidden">GrpcEnv</span> aka getByTestId('environment-selector-trigger').getByText('GrpcEnv')
2) <span class="max-w-100% truncate no-wrap">GrpcEnv</span> aka locator('#tippy-51').getByText('GrpcEnv')
Call log:
- waiting for getByText('GrpcEnv')
9 | await test.step('Switch to GrpcEnv environment', async () => {
10 | await page.locator('div.current-environment').click();
> 11 | await page.getByText('GrpcEnv').click();
| ^
12 | await expect(page.locator('.current-environment').filter({ hasText: /GrpcEnv/ })).toBeVisible();
13 | });
14 | });
at /home/runner/work/bruno/bruno/tests/grpc/method-search/grpc-method-search.spec.ts:11:39
at /home/runner/work/bruno/bruno/tests/grpc/method-search/grpc-method-search.spec.ts:9:5
|
|
Setup Node.js
Failed to restore: "/usr/bin/tar" failed with error: The process '/usr/bin/tar' failed with exit code 2
|
|
Run Playwright tests
4 flaky
[default] › tests/grpc/method-search/grpc-method-search.spec.ts:52:7 › Grpc Collection - Method Search Functionality › Search for grpc methods using the keyboard
[default] › tests/import/insomnia/import-insomnia-v4-environments.spec.ts:19:7 › Import Insomnia v4 Collection - Environment Import › Import Insomnia v4 collection with nested environments and verify flattening
[default] › tests/import/postman/import-oauth2-implicit-grant-type.spec.ts:22:7 › Import Postman Collection with OAuth2.0 Implicit Grant Type › should import Postman collection with OAuth2.0 Implicit Grant Type successfully
[default] › tests/shortcuts/request-actions.spec.ts:261:11 › Shortcut Keys - BOUND_ACTIONS › REQUESTS › SHORTCUT: Change Orientation (customized Alt+Shift+Y) › customized Alt+Shift+Y change layout orientation
9 skipped
874 passed (55.1m)
|
background
wait
wait-all
cancel
parallel
Loading