Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
solverat committed Sep 20, 2023
1 parent 86d6290 commit 539f432
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/Functional/Constraints/IpConstraintCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function testIpConstraintWithVersion6AndAllFieldsInvalid(FunctionalTester
{
list($testFormBuilder, $form) = $this->setupForm($I, [['ip', ['version' => 6]]]);

$this->fillForm($I, ['text_0' => '192.168.108.105']);
$this->fillForm($I, ['text_0' => '12001:0db8:85a3:0000:0000:8a2e:0370:7334']);

$I->click($testFormBuilder->getFormFieldSelector(1, 'submit'));

Expand Down
2 changes: 1 addition & 1 deletion tests/Functional/SimpleForm/SimpleFormEditWindowCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function testConfigFieldFormMailOutputWorkflowSelector(FunctionalTester $
];

$I->seeElement('template#template__pimcore_editable_bundleTestArea_1_outputWorkflow');
$I->seeAEditableConfiguration('outputWorkflow', 'select', 'Output Workflow', $options, null, 'script');
$I->seeAEditableConfiguration('outputWorkflow', 'select', 'Output Workflow', $options, '', 'script');
}

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/_envs/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ modules:
wait: 1
capabilities:
chromeOptions:
args: ['--no-sandbox', '--disable-extensions', '--headless', '--disable-gpu', '--disable-dev-shm-usage', '--window-size=1280,1024']
args: ['--headless', '--disable-gpu']
prefs:
download.default_directory: '%TEST_BUNDLE_TEST_DIR%/_data/downloads'
2 changes: 1 addition & 1 deletion tests/_envs/local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ modules:
wait: 1
capabilities:
chromeOptions:
args: ['--disable-extensions', '--headless=old', '--remote-debugging-port=9222', '--disable-gpu', '--disable-dev-shm-usage', '--window-size=1280,1024']
args: ['--disable-extensions', '--headless', '--disable-gpu', '--disable-dev-shm-usage', '--window-size=1280,1024']

0 comments on commit 539f432

Please sign in to comment.