You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
724 B
37 lines
724 B
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`reducers tickerReducer should correctly getTicker 1`] = `
|
|
Object {
|
|
"btcTicker": null,
|
|
"crypto": "btc",
|
|
"currency": "btc",
|
|
"tickerLoading": true,
|
|
}
|
|
`;
|
|
|
|
exports[`reducers tickerReducer should correctly receiveTicker 1`] = `
|
|
Object {
|
|
"btcTicker": "f",
|
|
"crypto": "btc",
|
|
"currency": "btc",
|
|
"tickerLoading": false,
|
|
}
|
|
`;
|
|
|
|
exports[`reducers tickerReducer should correctly setCurrency 1`] = `
|
|
Object {
|
|
"btcTicker": null,
|
|
"crypto": "btc",
|
|
"currency": "foo",
|
|
"tickerLoading": false,
|
|
}
|
|
`;
|
|
|
|
exports[`reducers tickerReducer should handle initial state 1`] = `
|
|
Object {
|
|
"btcTicker": null,
|
|
"crypto": "btc",
|
|
"currency": "btc",
|
|
"tickerLoading": false,
|
|
}
|
|
`;
|
|
|