Skip to content

Commit

Permalink
TS-47 Add module-specific fixtures sql dump
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniil Tkachev committed Jan 8, 2025
1 parent c2f0b49 commit fd23814
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/oxid-esales/cypress.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,14 @@ function run_docker_compose_up() {
echo "CYPRESS_WORKDIR=$CYPRESS_WORKDIR"
echo "CYPRESS_CONFIG=$CYPRESS_CONFIG"
docker ps
docker exec -it telecash-module-cypress-1 curl http://oxideshop.local


docker compose up cypress
docker exec -it telecash-module-cypress-1 curl http://oxideshop.local
docker exec -it telecash-module-cypress-1 curl http://localhost.local
docker exec -it telecash-module-cypress-1 curl http://telecash-module-apache-1
curl http://oxideshop.local
curl http://localhost.local
}

# Set environment variables
Expand Down
2 changes: 2 additions & 0 deletions tests/Codeception/Acceptance/PaymentsAvailableCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ public function checkPayments(AcceptanceTester $I): void
{
$I->amGoingTo("Check if Telecash payments is available");
$I->openShop();
var_dump($I->getShopUrl());
exit;
$I->assertTrue(true);
}
}

0 comments on commit fd23814

Please sign in to comment.