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/error_tracking/store/list/actions_spec.js')
-rw-r--r--spec/frontend/error_tracking/store/list/actions_spec.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/frontend/error_tracking/store/list/actions_spec.js b/spec/frontend/error_tracking/store/list/actions_spec.js
index 24a26476455..622195defa1 100644
--- a/spec/frontend/error_tracking/store/list/actions_spec.js
+++ b/spec/frontend/error_tracking/store/list/actions_spec.js
@@ -57,7 +57,7 @@ describe('error tracking actions', () => {
describe('restartPolling', () => {
it('should restart polling', () => {
- testAction(
+ return testAction(
actions.restartPolling,
{},
{},
@@ -74,7 +74,7 @@ describe('error tracking actions', () => {
it('should search by query', () => {
const query = 'search';
- testAction(
+ return testAction(
actions.searchByQuery,
query,
{},
@@ -92,7 +92,7 @@ describe('error tracking actions', () => {
it('should search errors by status', () => {
const status = 'ignored';
- testAction(
+ return testAction(
actions.filterByStatus,
status,
{},
@@ -106,7 +106,7 @@ describe('error tracking actions', () => {
it('should search by query', () => {
const field = 'frequency';
- testAction(
+ return testAction(
actions.sortByField,
field,
{},
@@ -123,7 +123,7 @@ describe('error tracking actions', () => {
it('should set search endpoint', () => {
const endpoint = 'https://sentry.io';
- testAction(
+ return testAction(
actions.setEndpoint,
{ endpoint },
{},
@@ -136,7 +136,7 @@ describe('error tracking actions', () => {
describe('fetchPaginatedResults', () => {
it('should start polling the selected page cursor', () => {
const cursor = '1576637570000:1:1';
- testAction(
+ return testAction(
actions.fetchPaginatedResults,
cursor,
{},