Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
488f1260
Commit
488f1260
authored
Jun 15, 2021
by
Vitaly Slobodin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix path to constants
parent
23b5930b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
ee/spec/frontend/subscriptions/buy_minutes/components/checkout/order_summary_spec.js
...ons/buy_minutes/components/checkout/order_summary_spec.js
+2
-5
ee/spec/frontend/subscriptions/new/store/actions_spec.js
ee/spec/frontend/subscriptions/new/store/actions_spec.js
+1
-1
No files found.
ee/spec/frontend/subscriptions/buy_minutes/components/checkout/order_summary_spec.js
View file @
488f1260
...
...
@@ -17,7 +17,7 @@ localVue.use(VueApollo);
describe
(
'
Order Summary
'
,
()
=>
{
const
resolvers
=
{
...
purchaseFlowResolvers
,
...
subscriptionsResolvers
};
const
initialStateData
=
{
selectedPlanId
:
'
s
ilver
'
,
selectedPlanId
:
'
s
econdPlanId
'
,
};
let
wrapper
;
...
...
@@ -106,7 +106,7 @@ describe('Order Summary', () => {
beforeEach
(()
=>
{
createComponent
({
subscription
:
{
quantity
:
1
},
selectedPlanId
:
'
bronze
'
,
selectedPlanId
:
'
firstPlanId
'
,
});
});
...
...
@@ -128,7 +128,6 @@ describe('Order Summary', () => {
beforeEach
(()
=>
{
createComponent
({
subscription
:
{
quantity
:
1
},
selectedPlanId
:
'
silver
'
,
});
});
...
...
@@ -154,7 +153,6 @@ describe('Order Summary', () => {
beforeEach
(()
=>
{
createComponent
({
subscription
:
{
quantity
:
3
},
selectedPlanId
:
'
silver
'
,
});
});
...
...
@@ -179,7 +177,6 @@ describe('Order Summary', () => {
beforeEach
(()
=>
{
createComponent
({
subscription
:
{
quantity
:
0
},
selectedPlanId
:
'
silver
'
,
});
});
...
...
ee/spec/frontend/subscriptions/new/store/actions_spec.js
View file @
488f1260
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
Api
from
'
ee/api
'
;
import
*
as
constants
from
'
ee/subscriptions/
new/
constants
'
;
import
*
as
constants
from
'
ee/subscriptions/constants
'
;
import
defaultClient
from
'
ee/subscriptions/new/graphql
'
;
import
*
as
actions
from
'
ee/subscriptions/new/store/actions
'
;
import
{
GENERAL_ERROR_MESSAGE
}
from
'
ee/vue_shared/purchase_flow/constants
'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment