Skip to content

Commit

Permalink
test: upload artifacts job and try fixing test (#2578)
Browse files Browse the repository at this point in the history
  • Loading branch information
uziab authored Nov 6, 2024
1 parent 37befed commit d738a46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,6 @@ jobs:
if: ${{ always() }}
with:
name: test-results
path: packages/testing-kit/reports
path: |
packages/testkit/reports
packages/testkit/test-results
2 changes: 1 addition & 1 deletion packages/testkit/__TESTS__/dropdown.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ test.describe("dropdown Class with Storybook", () => {
test("set dropdown value", async ({page}) => {
await DropDown.selectItem("2");
await page.waitForTimeout(500);
expect(await DropDown.getText()).toContain("Option 2");
expect(await DropDown.getText()).toContain("2");
});
});

0 comments on commit d738a46

Please sign in to comment.