File tree 3 files changed +19
-1
lines changed
3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " passbolt/passbolt_selenium_api" ,
3
3
"description" : " Passbolt selenium testing helper endpoints" ,
4
4
"type" : " cakephp-plugin" ,
5
- "version" : " 2.0" ,
5
+ "version" : " 2.2. 0" ,
6
6
"keywords" : [
7
7
" password" ,
8
8
" passbolt" ,
Original file line number Diff line number Diff line change 20
20
* This allow redefining server config on the fly when running integration tests
21
21
*/
22
22
if (Configure::read ('debug ' ) && Configure::read ('passbolt.selenium.active ' )) {
23
+ Configure::load ('PassboltSeleniumApi.config ' , 'default ' , true );
23
24
if (file_exists (TMP . 'selenium ' . DS . 'core_extra_config.php ' )) {
24
25
Configure::config ('extra_config ' , new PhpConfig (TMP . 'selenium ' . DS ));
25
26
Configure::load ('core_extra_config ' , 'extra_config ' , true );
Original file line number Diff line number Diff line change
1
+ <?php
2
+ return [
3
+ 'passbolt ' => [
4
+ 'plugins ' => [
5
+ 'selenium_api ' => [
6
+ 'version ' => '2.2.0 ' ,
7
+ 'security ' => [
8
+ 'csrfProtection ' => [
9
+ 'unlockedActions ' => [
10
+ 'Config ' => ['setExtraConfig ' ]
11
+ ]
12
+ ]
13
+ ],
14
+ ]
15
+ ]
16
+ ]
17
+ ];
You can’t perform that action at this time.
0 commit comments