File tree 2 files changed +1
-4
lines changed
packages/victory-candlestick/src
test/jest/victory-candlestick
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
1
export { default as VictoryCandlestick } from "./victory-candlestick" ;
2
2
export { default as Candle } from "./candle" ;
3
- export * as helperMethods from "./helper-methods" ;
Original file line number Diff line number Diff line change 1
1
/* eslint max-nested-callbacks: 0 */
2
- import { helperMethods } from "victory-candlestick" ;
3
2
import { range } from "lodash" ;
4
3
import { fromJS } from "immutable" ;
4
+ import { getData , getDomain } from "victory-candlestick/lib/helper-methods" ;
5
5
6
6
const immutableGetDataTest = {
7
7
createData : ( x ) => fromJS ( x ) ,
@@ -12,8 +12,6 @@ const getDataTest = {
12
12
testLabel : "with js data"
13
13
} ;
14
14
15
- const { getData, getDomain } = helperMethods ;
16
-
17
15
[ getDataTest , immutableGetDataTest ] . forEach ( ( { createData, testLabel } ) => {
18
16
describe ( `victory-candlestick/helper-methods ${ testLabel } ` , ( ) => {
19
17
describe ( "getData" , ( ) => {
You can’t perform that action at this time.
0 commit comments