mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Adapt to new naming convention
This commit is contained in:
parent
a15a392bd3
commit
48d01343c3
@ -1,4 +1,4 @@
|
||||
import { ACTION_TYPES } from './action-types';
|
||||
import { ACTION_TYPES } from './FormsActionTypes';
|
||||
|
||||
/**
|
||||
* Removes a form from state.
|
@ -1,5 +1,5 @@
|
||||
import deepFreeze from 'deep-freeze';
|
||||
import { ACTION_TYPES } from './action-types';
|
||||
import { ACTION_TYPES } from './FormsActionTypes';
|
||||
|
||||
const initialState = deepFreeze({});
|
||||
|
@ -1,10 +1,10 @@
|
||||
jest.unmock('deep-freeze');
|
||||
jest.unmock('../reducer');
|
||||
jest.unmock('../action-types');
|
||||
jest.unmock('../FormsReducer');
|
||||
jest.unmock('../FormsActionTypes');
|
||||
|
||||
import deepFreeze from 'deep-freeze';
|
||||
import { ACTION_TYPES } from '../action-types';
|
||||
import formsReducer from '../reducer';
|
||||
import { ACTION_TYPES } from '../FormsActionTypes';
|
||||
import formsReducer from '../FormsReducer';
|
||||
|
||||
describe('formsReducer', () => {
|
||||
|
Loading…
Reference in New Issue
Block a user