Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IDATT2106 Scrum Team 02
Frontend
Merge requests
!3
E2e testing i CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
E2e testing i CI
e2e
into
main
Overview
0
Commits
3
Pipelines
1
Changes
2
Merged
Sondre Malerud
requested to merge
e2e
into
main
2 years ago
Overview
0
Commits
3
Pipelines
1
Changes
2
Expand
1
0
1
1
Merge request reports
Compare
main
main (base)
and
latest version
latest version
c69dec06
3 commits,
2 years ago
2 files
+
7
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
6
−
1
Options
image
:
nod
e:latest
image
:
cypress/bas
e:latest
stages
:
stages
:
-
build
-
build
@@ -24,3 +24,8 @@ unit-test-job: # This job runs in the test stage.
@@ -24,3 +24,8 @@ unit-test-job: # This job runs in the test stage.
stage
:
test
# It only starts when the job in the build stage completes successfully.
stage
:
test
# It only starts when the job in the build stage completes successfully.
script
:
script
:
-
npm run test:unit
-
npm run test:unit
e2e-test-job
:
# This job runs in the test stage.
stage
:
test
# It only starts when the job in the build stage completes successfully.
script
:
-
npm run test:e2e:dev
Loading