Merge remote-tracking branch 'upstream/master' into default-address
This commit is contained in:
commit
e162e744f1
|
|
@ -39,7 +39,7 @@ SHOP_MAIL_FROM=
|
|||
ADMIN_MAIL_TO=
|
||||
MAIL_FROM_NAME=
|
||||
|
||||
fixer_api_key=
|
||||
FIXER_API_KEY=
|
||||
|
||||
PUSHER_APP_ID=
|
||||
PUSHER_APP_KEY=
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
"babenkoivan/elastic-scout-driver": "^1.1",
|
||||
"bagistobrasil/bagisto-product-social-share": "^0.1.2",
|
||||
"barryvdh/laravel-debugbar": "^3.1",
|
||||
"barryvdh/laravel-dompdf": "^0.8",
|
||||
"barryvdh/laravel-dompdf": "^0.8.5|^0.9.0",
|
||||
"doctrine/dbal": "^2.9",
|
||||
"enshrined/svg-sanitize": "^0.14.0",
|
||||
"facade/ignition": "^2.3.6",
|
||||
|
|
@ -37,7 +37,7 @@
|
|||
"maatwebsite/excel": "^3.1.26",
|
||||
"paypal/paypal-checkout-sdk": "1.0.1",
|
||||
"prettus/l5-repository": "^2.6",
|
||||
"tymon/jwt-auth": "^1.0.0"
|
||||
"tymon/jwt-auth": "1.0.x-dev"
|
||||
},
|
||||
"require-dev": {
|
||||
"codeception/codeception": "^4.1",
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -33,7 +33,7 @@ return [
|
|||
'default' => 'exchange_rates',
|
||||
|
||||
'fixer' => [
|
||||
'key' => env('fixer_api_key'),
|
||||
'key' => env('FIXER_API_KEY'),
|
||||
'class' => 'Webkul\Core\Helpers\Exchange\FixerExchange'
|
||||
],
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
namespace Tests\Functional\Admin\Settings;
|
||||
|
||||
use FunctionalTester;
|
||||
|
||||
class ExchangeRatesCest
|
||||
{
|
||||
public function testIndex(FunctionalTester $I): void
|
||||
{
|
||||
$I->loginAsAdmin();
|
||||
$I->amOnAdminRoute('admin.dashboard.index');
|
||||
|
||||
$I->click(__('admin::app.layouts.settings'), '//*[contains(@class, "navbar-left")]');
|
||||
$I->click(__('admin::app.layouts.exchange-rates'), '//*[contains(@class, "aside-nav")]');
|
||||
|
||||
$I->seeCurrentRouteIs('admin.exchange_rates.index');
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue