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/observability/client_spec.js')
-rw-r--r--spec/frontend/observability/client_spec.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/frontend/observability/client_spec.js b/spec/frontend/observability/client_spec.js
index 66fbc0cdb77..b41b303f57d 100644
--- a/spec/frontend/observability/client_spec.js
+++ b/spec/frontend/observability/client_spec.js
@@ -213,10 +213,10 @@ describe('buildClient', () => {
expect(getQueryParam()).toBe(`sort=${DEFAULT_SORTING_OPTION}`);
});
- it('defaults to created_desc if sortBy param is not an accepted value', async () => {
+ it('defaults to timestamp_desc if sortBy param is not an accepted value', async () => {
await client.fetchTraces({ sortBy: 'foo-bar' });
- expect(getQueryParam()).toBe(`sort=${SORTING_OPTIONS.CREATED_DESC}`);
+ expect(getQueryParam()).toBe(`sort=${SORTING_OPTIONS.TIMESTAMP_DESC}`);
});
});
@@ -230,7 +230,7 @@ describe('buildClient', () => {
it('does not set any query param without filters', async () => {
await client.fetchTraces();
- expect(getQueryParam()).toBe(`sort=${SORTING_OPTIONS.CREATED_DESC}`);
+ expect(getQueryParam()).toBe(`sort=${SORTING_OPTIONS.TIMESTAMP_DESC}`);
});
it('appends page_token if specified', async () => {
@@ -297,7 +297,7 @@ describe('buildClient', () => {
},
});
- expect(getQueryParam()).toBe(`sort=${SORTING_OPTIONS.CREATED_DESC}`);
+ expect(getQueryParam()).toBe(`sort=${SORTING_OPTIONS.TIMESTAMP_DESC}`);
});
it('ignores empty filters', async () => {
@@ -308,7 +308,7 @@ describe('buildClient', () => {
},
});
- expect(getQueryParam()).toBe(`sort=${SORTING_OPTIONS.CREATED_DESC}`);
+ expect(getQueryParam()).toBe(`sort=${SORTING_OPTIONS.TIMESTAMP_DESC}`);
});
it('ignores unsupported operators', async () => {
@@ -335,7 +335,7 @@ describe('buildClient', () => {
},
});
- expect(getQueryParam()).toBe(`sort=${SORTING_OPTIONS.CREATED_DESC}`);
+ expect(getQueryParam()).toBe(`sort=${SORTING_OPTIONS.TIMESTAMP_DESC}`);
});
});
});