Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/deploy_freeze/store/actions_spec.js')
-rw-r--r--spec/frontend/deploy_freeze/store/actions_spec.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/frontend/deploy_freeze/store/actions_spec.js b/spec/frontend/deploy_freeze/store/actions_spec.js
index d39577baa59..86b72c673bc 100644
--- a/spec/frontend/deploy_freeze/store/actions_spec.js
+++ b/spec/frontend/deploy_freeze/store/actions_spec.js
@@ -36,7 +36,7 @@ describe('deploy freeze store actions', () => {
describe('setSelectedFreezePeriod', () => {
it('commits SET_SELECTED_TIMEZONE mutation', () => {
- testAction(
+ return testAction(
actions.setFreezePeriod,
{
id: 3,
@@ -69,7 +69,7 @@ describe('deploy freeze store actions', () => {
describe('setSelectedTimezone', () => {
it('commits SET_SELECTED_TIMEZONE mutation', () => {
- testAction(actions.setSelectedTimezone, {}, {}, [
+ return testAction(actions.setSelectedTimezone, {}, {}, [
{
payload: {},
type: types.SET_SELECTED_TIMEZONE,
@@ -80,7 +80,7 @@ describe('deploy freeze store actions', () => {
describe('setFreezeStartCron', () => {
it('commits SET_FREEZE_START_CRON mutation', () => {
- testAction(actions.setFreezeStartCron, {}, {}, [
+ return testAction(actions.setFreezeStartCron, {}, {}, [
{
type: types.SET_FREEZE_START_CRON,
},
@@ -90,7 +90,7 @@ describe('deploy freeze store actions', () => {
describe('setFreezeEndCron', () => {
it('commits SET_FREEZE_END_CRON mutation', () => {
- testAction(actions.setFreezeEndCron, {}, {}, [
+ return testAction(actions.setFreezeEndCron, {}, {}, [
{
type: types.SET_FREEZE_END_CRON,
},