mirror of
https://github.com/apache/superset.git
synced 2026-04-13 05:07:53 +00:00
test(frontend): use absolute path for src imports (#9761)
* test(frontend): use absolute path for src imports * Upgrade prettier, fix eslint
This commit is contained in:
@@ -17,9 +17,9 @@
|
||||
* under the License.
|
||||
*/
|
||||
/* eslint-disable no-unused-expressions */
|
||||
import { defaultState } from '../../../src/explore/store';
|
||||
import exploreReducer from '../../../src/explore/reducers/exploreReducer';
|
||||
import * as actions from '../../../src/explore/actions/exploreActions';
|
||||
import { defaultState } from 'src/explore/store';
|
||||
import exploreReducer from 'src/explore/reducers/exploreReducer';
|
||||
import * as actions from 'src/explore/actions/exploreActions';
|
||||
|
||||
describe('reducers', () => {
|
||||
it('sets correct control value given a key and value', () => {
|
||||
|
||||
Reference in New Issue
Block a user