Skip to content

added cypress test scripts #405

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

Open
wants to merge 36 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
9fce633
added cypress test scripts
gaurabh-chakraborty Nov 10, 2022
1db73ba
added new pages, methods, assertions and ,many more
gaurabh-chakraborty Nov 11, 2022
95d7a00
added new element list and also tests
gaurabh-chakraborty Nov 12, 2022
48026cb
solved commit issue
gaurabh-chakraborty Nov 12, 2022
0bc6b3b
added installation page elements and test
gaurabh-chakraborty Nov 17, 2022
cfed2e8
github Action test
gaurabh-chakraborty Nov 19, 2022
387459b
Create .gitlab-ci.yml
gaurabh-chakraborty Nov 19, 2022
f77ce05
added main.yml file
gaurabh-chakraborty Nov 19, 2022
32b7084
Merge branch 'cypress_automation' of https://github.com/GeekyAnts/nat…
gaurabh-chakraborty Nov 19, 2022
bf32143
Update main.yml
gaurabh-chakraborty Nov 30, 2022
eedc746
Creating Universal App page -1
Krithikj20 Nov 30, 2022
ad93b88
Contribution Page -1
Prakash-Achanta Dec 1, 2022
9951898
Creating Universal App
Krithikj20 Dec 1, 2022
32df23f
Contribution Page -1
Prakash-Achanta Dec 1, 2022
7be395a
Contribution Page-1
Prakash-Achanta Dec 1, 2022
dd8c24e
Contribution page Entire Code
Prakash-Achanta Dec 1, 2022
d495286
Added theme in Contribution Page Code
Prakash-Achanta Dec 1, 2022
6ea467f
Utility First Page Code
Prakash-Achanta Dec 1, 2022
46e605b
Utility First Page
Prakash-Achanta Dec 1, 2022
317b40c
Updated Contribution Page'
Prakash-Achanta Dec 1, 2022
8c40deb
Updated Creating Universal App Page
Krithikj20 Dec 1, 2022
acd1e65
Fixed Creating Universal App page
Krithikj20 Dec 2, 2022
cedf953
Utility Props Page Code
Prakash-Achanta Dec 2, 2022
d95750c
Started writing Design Tokens page
Krithikj20 Dec 2, 2022
fd7c2d4
Updated Utility Props Specificity Page Code
Prakash-Achanta Dec 2, 2022
3ef4ecd
Updated UtilityProps Specificity Page Code
Prakash-Achanta Dec 2, 2022
ae0cf0d
Utility Props Specificity Updated Page Code
Prakash-Achanta Dec 5, 2022
6ecd7d9
Utility Props Specificity Updated Page Code
Prakash-Achanta Dec 5, 2022
a6edaeb
Design Tokens Page
Krithikj20 Dec 5, 2022
3426900
Updated design tokens page
Krithikj20 Dec 5, 2022
065c2d7
Pesudo Props Overview Page Code
Prakash-Achanta Dec 5, 2022
272eb30
Added Pseudo props Dos & Donts page
Krithikj20 Dec 6, 2022
4fb7302
Internal Pseudo Props Page Code
Prakash-Achanta Dec 6, 2022
3798182
Utility Props Specificity Test Page
Prakash-Achanta Dec 7, 2022
419a487
Update main.yml
gaurabh-chakraborty Dec 7, 2022
1afc787
Update and rename main.yml to main-End-to-end-tests.yml
gaurabh-chakraborty Dec 7, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
13 changes: 13 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
stages:
- test

test:
image: node:latest
stage: test
script:
# install dependencies
- npm ci
# start the server in the background
- npm run start:ci &
# run Cypress tests
- npm run e2e
9 changes: 9 additions & 0 deletions cypress.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { defineConfig } from "cypress";

export default defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});
Loading