Skip to content

Commit a0c7572

Browse files
committed
Udate the integration test
1 parent f9b36d3 commit a0c7572

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/integration-test.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,18 @@ jobs:
5757
expect "Field type" { send "string\r" }
5858
expect "Field length" { send "\r" }
5959
expect "nullable" { send "no\r" }
60-
expect "New property name" { send "price\r" }
60+
expect "Add another property" { send "price\r" }
6161
expect "Field type" { send "integer\r" }
6262
expect "nullable" { send "no\r" }
63-
expect "New property name" { send "\r" }
63+
expect "Add another property" { send "\r" }
6464
expect eof
6565
EOD
6666
6767
- name: Create DB schema
6868
working-directory: e2e-app
6969
run: |
70-
php bin/console doctrine:database:create --if-not-exists -q
70+
# Ensure DB file exists for SQLite, ignore if already present
71+
touch var/data.db
7172
php bin/console doctrine:schema:create -q
7273
7374
- name: Generate Dashboard and CRUD

0 commit comments

Comments
 (0)