fix broken specs
This commit is contained in:
parent
15a4773e06
commit
91bbd80f49
4 changed files with 5 additions and 5 deletions
|
@ -7,7 +7,7 @@ import { axisLeft, axisBottom } from 'd3-axis';
|
|||
import { area } from 'd3-shape';
|
||||
import { brushX } from 'd3-brush';
|
||||
import { timeParse } from 'd3-time-format';
|
||||
import { dateTickFormat } from '../lib/utils/tick_formats';
|
||||
import { dateTickFormat } from '~/lib/utils/tick_formats';
|
||||
|
||||
const d3 = { extent, max, select, scaleTime, scaleLinear, axisLeft, axisBottom, area, brushX, timeParse };
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* eslint-disable quotes, jasmine/no-suite-dupes, vars-on-top, no-var */
|
||||
import { scaleLinear, scaleTime } from 'd3-scale';
|
||||
import { timeParse } from 'd3-time-format';
|
||||
import { ContributorsGraph, ContributorsMasterGraph } from '~/graphs/stat_graph_contributors_graph';
|
||||
import { ContributorsGraph, ContributorsMasterGraph } from '~/pages/projects/graphs/show/stat_graph_contributors_graph';
|
||||
|
||||
const d3 = { scaleLinear, scaleTime, timeParse };
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import ContributorsStatGraph from '~/graphs/stat_graph_contributors';
|
||||
import { ContributorsGraph } from '~/graphs/stat_graph_contributors_graph';
|
||||
import ContributorsStatGraph from '~/pages/projects/graphs/show/stat_graph_contributors';
|
||||
import { ContributorsGraph } from '~/pages/projects/graphs/show/stat_graph_contributors_graph';
|
||||
|
||||
import { setLanguage } from '../helpers/locale_helper';
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* eslint-disable quotes, no-var, camelcase, object-property-newline, comma-dangle, max-len, vars-on-top, quote-props */
|
||||
|
||||
import ContributorsStatGraphUtil from '~/graphs/stat_graph_contributors_util';
|
||||
import ContributorsStatGraphUtil from '~/pages/projects/graphs/show/stat_graph_contributors_util';
|
||||
|
||||
describe("ContributorsStatGraphUtil", function () {
|
||||
describe("#parse_log", function () {
|
||||
|
|
Loading…
Reference in a new issue