Skip to content

Commit

Permalink
DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
lucatume committed Aug 31, 2024
1 parent 25169bb commit 1e78855
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
with:
php-version: ${{ matrix.php_version }}
extensions: uopz, sqlite3, gd
ini-values: post_max_size=256M, max_execution_time=180, uopz.exit=1
ini-values: post_max_size=256M, max_execution_time=180, uopz.exit=1, opcache.revalidate_freq=0
tools: composer

- name: Get Composer Cache Directory
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:

- name: Run tests
id: test
run: vendor/bin/codecept run ${{ matrix.suite }}
run: vendor/bin/codecept run ${{ matrix.suite }} --debug -f

- name: Upload Artifacts
uses: actions/upload-artifact@v2
Expand Down
7 changes: 6 additions & 1 deletion tests/webdriver/PluginActivationCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,15 @@ public function be_able_to_activate_plugins(WebDriverTester $I): void
*/
public function be_able_to_activate_plugins_in_a_long_list(WebDriverTester $I): void
{
$I->loginAsAdmin();
$I->amOnPluginsPage();

$I->makeScreenshot('1-before-scaffold');

$this->scaffoldTestPlugins($I);

$I->loginAsAdmin();
$I->amOnPluginsPage();
$I->makeScreenshot('2-before-activate');

$I->activatePlugin('plugin-z');
$I->seePluginActivated('plugin-z');
Expand Down

0 comments on commit 1e78855

Please sign in to comment.