Skip to content

Commit 6221f8a

Browse files
committed
gitpod yml and caps changes
1 parent 44d1f81 commit 6221f8a

File tree

6 files changed

+33
-10
lines changed

6 files changed

+33
-10
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
vendor/
2+
composer.lock

.gitpod.Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM gitpod/workspace-full
2+
3+
USER gitpod
4+
5+
# Install custom tools, runtime, etc. using apt-get
6+
# For example, the command below would install "bastet" - a command line tetris clone:
7+
#
8+
# RUN sudo apt-get -q update && \
9+
# sudo apt-get install -yq bastet && \
10+
# sudo rm -rf /var/lib/apt/lists/*
11+
#
12+
# More information: https://www.gitpod.io/docs/config-docker/

.gitpod.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
image:
2+
file: .gitpod.Dockerfile
3+
4+
# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/config-ports/
5+
ports:
6+
- port: 3000
7+
onOpen: open-preview
8+
9+
# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/
10+
tasks:
11+
- init: echo 'init script' # runs during prebuild
12+
command: echo 'start script'

codeception.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
params:
2+
- env # load params from environment vars
13
paths:
24
tests: tests
35
output: tests/_output

tests/_support/_generated/AcceptanceTesterActions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php //[STAMP] 28ba78c577fa8aa9095660a6e41463e2
1+
<?php //[STAMP] 1dc905555be391f7ca02f9211e47b969
22
namespace _generated;
33

44
// This class was automatically generated by build task

tests/acceptance.suite.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,13 @@ modules:
99
enabled:
1010
- WebDriver:
1111
url: 'https://lambdatest.github.io/'
12-
host: '{username}:{token}@hub.lambdatest.com'
12+
host: '%LT_USERNAME%:%LT_ACCESS_KEY%@hub.lambdatest.com'
1313
port: 80
1414
browser: chrome
1515
capabilities:
1616
name: 'Codeception Example'
17-
build: '1.0'
17+
build: 'codeception-sample'
1818
browserName: 'Chrome' # request the latest version of chrome
19-
platform: 'ANY'
20-
version: '71.0'
21-
tunnel: true
22-
network: true
23-
video: true
24-
visual: true
25-
console: true
19+
platform: 'Windows 10'
20+
version: 'latest'
2621

0 commit comments

Comments
 (0)