-
Notifications
You must be signed in to change notification settings - Fork 275
/
e2e.garden.yml
25 lines (25 loc) · 1.21 KB
/
e2e.garden.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
kind: Module
name: e2e-tests
type: exec
tests:
- name: demo-project
command: [npm, run, e2e-project, --, --project=demo-project, "--showlog=${var.show-log}", "--env=remote"]
timeout: ${var.timeout}
- name: kaniko
command: [npm, run, e2e-project, --, --project=kaniko, "--showlog=${var.show-log}", "--env=remote"]
timeout: ${var.timeout}
- name: tasks # Tests for tasks are currently being skipped
command: [npm, run, e2e-project, --, --project=tasks, "--showlog=${var.show-log}", "--env=${environment.name}"]
timeout: ${var.timeout}
- name: variables
command: [npm, run, e2e-project, --, --project=variables, "--showlog=${var.show-log}", "--env=${environment.name}"]
timeout: ${var.timeout}
- name: vote-helm
command: [npm, run, e2e-project, --, --project=vote-helm, "--showlog=${var.show-log}", "--env=${environment.name}"]
timeout: ${var.timeout}
- name: vote
command: [npm, run, e2e-project, --, --project=vote, "--showlog=${var.show-log}", "--env=${environment.name}"]
timeout: ${var.timeout}
- name: remote-sources
command: [npm, run, e2e-project, --, --project=remote-sources, "--showlog=${var.show-log}", "--env=${environment.name}"]
timeout: ${var.timeout}