Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: cypress tests restructure #1928

Merged
merged 24 commits into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e490821
refactor: restructure cypress test solution
prajwalnl0 Nov 20, 2024
870da8c
test: added spec files
prajwalnl0 Nov 20, 2024
f4e36da
test: update
prajwalnl0 Nov 22, 2024
8173625
Merge remote-tracking branch 'origin/main' into cypress-tests-restruc…
prajwalnl0 Dec 11, 2024
591e97a
test: tests restructure
prajwalnl0 Dec 16, 2024
2c33faa
fix: resolve conflict
prajwalnl0 Dec 16, 2024
3abe247
chore: merge main changes
prajwalnl0 Dec 17, 2024
fe3be1f
test: fix signin failing test case
prajwalnl0 Dec 17, 2024
2ccc995
chore: merge changes from main
prajwalnl0 Jan 10, 2025
a514976
test: change router image to standalone
prajwalnl0 Jan 10, 2025
93830d5
test: fix failing test cases
prajwalnl0 Jan 11, 2025
c7f68f7
test: check signup curl and artifacts
prajwalnl0 Jan 11, 2025
6e9456c
test: update artifact action version
prajwalnl0 Jan 11, 2025
03845f9
test: change curl port
prajwalnl0 Jan 11, 2025
3361102
test: removed test curl in workflow file
prajwalnl0 Jan 11, 2025
e74e4e4
test: change HCC start command
prajwalnl0 Jan 12, 2025
adb7302
test: skip failing test cases
prajwalnl0 Jan 12, 2025
bb1c3f7
test: pull changes from main
prajwalnl0 Jan 22, 2025
f2d3ff9
test: revert npm test command
prajwalnl0 Jan 22, 2025
8bf55ac
test: update test cases
prajwalnl0 Jan 23, 2025
a614c54
Merge branch 'main' into cypress-tests-restructure
prajwalnl0 Jan 23, 2025
3c29bd4
Merge branch 'main' into cypress-tests-restructure
prajwalnl0 Jan 23, 2025
44e71c5
Merge branch 'main' into cypress-tests-restructure
JeevaRamu0104 Jan 24, 2025
c1b7af4
Merge branch 'main' into cypress-tests-restructure
prajwalnl0 Jan 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/cypress-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ jobs:
build: npm run build:test
start: npm run test:start
# spec: cypress/e2e/quick-start/sbx-quick-start.cy.js

- name: Test Artifacts
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: ./cypress/screenshots

# - name: Check Coverage Thresholds
# run: |
Expand Down
1 change: 1 addition & 0 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
baseUrl: "http://localhost:9000",
setupNodeEvents(on, config) {
require("@cypress/code-coverage/task")(on, config);
// include any other plugin code...
Expand Down
Loading
Loading