Commit 91e3f868 authored by Andrew Fontaine's avatar Andrew Fontaine

Merge branch...

Merge branch '276172-rename-cycle-analytics-with-value-stream-analytics-in-strings-under-ee-spec' into 'master'

Rename "cycle analytics" with "value stream analytics" under /ee/spec

See merge request gitlab-org/gitlab!46745
parents a30cdc8b b08741b7
---
title: Rename "cycle analytics" with "value stream analytics" under /ee/spec
merge_request: 46745
author: Takuya Noguchi
type: other
// Jest Snapshot v1, https://goo.gl/fbAQLP // Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Cycle analytics utils transformRawStages retains all the stage properties 1`] = ` exports[`Value Stream Analytics utils transformRawStages retains all the stage properties 1`] = `
Array [ Array [
Object { Object {
"custom": false, "custom": false,
......
...@@ -42,7 +42,7 @@ const stageEndpoint = ({ stageId }) => ...@@ -42,7 +42,7 @@ const stageEndpoint = ({ stageId }) =>
jest.mock('~/flash'); jest.mock('~/flash');
describe('Cycle analytics actions', () => { describe('Value Stream Analytics actions', () => {
let state; let state;
let mock; let mock;
......
...@@ -28,7 +28,7 @@ const milestoneValues = getFilterValues(filterMilestones); ...@@ -28,7 +28,7 @@ const milestoneValues = getFilterValues(filterMilestones);
const labelValues = getFilterValues(filterLabels); const labelValues = getFilterValues(filterLabels);
const userValues = getFilterValues(filterUsers, { prop: 'name' }); const userValues = getFilterValues(filterUsers, { prop: 'name' });
describe('Cycle analytics getters', () => { describe('Value Stream Analytics getters', () => {
describe('hasNoAccessError', () => { describe('hasNoAccessError', () => {
beforeEach(() => { beforeEach(() => {
state = { state = {
......
...@@ -6,7 +6,7 @@ import { apiTasksByTypeData, rawTasksByTypeData } from '../../../mock_data'; ...@@ -6,7 +6,7 @@ import { apiTasksByTypeData, rawTasksByTypeData } from '../../../mock_data';
let state = null; let state = null;
describe('Cycle analytics mutations', () => { describe('Value Stream Analytics mutations', () => {
beforeEach(() => { beforeEach(() => {
state = {}; state = {};
}); });
......
...@@ -16,7 +16,7 @@ import { ...@@ -16,7 +16,7 @@ import {
let state = null; let state = null;
describe('Cycle analytics mutations', () => { describe('Value Stream Analytics mutations', () => {
beforeEach(() => { beforeEach(() => {
state = {}; state = {};
}); });
......
...@@ -41,7 +41,7 @@ import { ...@@ -41,7 +41,7 @@ import {
const labelEventIds = labelEvents.map(ev => ev.identifier); const labelEventIds = labelEvents.map(ev => ev.identifier);
describe('Cycle analytics utils', () => { describe('Value Stream Analytics utils', () => {
describe('isStartEvent', () => { describe('isStartEvent', () => {
it('will return true for a valid start event', () => { it('will return true for a valid start event', () => {
expect(isStartEvent(startEvents[0])).toEqual(true); expect(isStartEvent(startEvents[0])).toEqual(true);
......
...@@ -200,7 +200,7 @@ describe('Api', () => { ...@@ -200,7 +200,7 @@ describe('Api', () => {
}); });
}); });
describe('Cycle analytics', () => { describe('Value Stream Analytics', () => {
const createdBefore = '2019-11-18'; const createdBefore = '2019-11-18';
const createdAfter = '2019-08-18'; const createdAfter = '2019-08-18';
const groupId = 'counting-54321'; const groupId = 'counting-54321';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment