Skip to content

Commit 7467ff4

Browse files
francesco-strazzullosmithad15
authored andcommitted
Using Angular2 file naming styleguide (angular-redux#150)
* Using Angular2 file naming styleguide * renamed tests file names
1 parent 68b039d commit 7467ff4

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

packages/store/src/___tests___/utils/shallowEqual.spec.ts renamed to packages/store/src/___tests___/utils/shallow-equal.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {expect} from 'chai';
2-
import shallowEqual from '../../utils/shallowEqual';
2+
import shallowEqual from '../../utils/shallow-equal';
33

44
describe('Utils', () => {
55
describe('shallowEqual', () => {

packages/store/src/___tests___/utils/wrapActionCreators.spec.ts renamed to packages/store/src/___tests___/utils/wrap-action-creators.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {expect} from 'chai';
2-
import wrapActionCreators from '../../utils/wrapActionCreators';
2+
import wrapActionCreators from '../../utils/wrap-action-creators';
33
import {ActionCreator, ActionCreatorsMapObject} from 'redux';
44

55

packages/store/src/components/ng-redux.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ import { BehaviorSubject } from 'rxjs/BehaviorSubject';
1414
import 'rxjs/add/operator/map';
1515
import 'rxjs/add/operator/distinctUntilChanged';
1616
import { Injectable, Optional, ApplicationRef } from '@angular/core';
17-
import shallowEqual from '../utils/shallowEqual';
18-
import wrapActionCreators from '../utils/wrapActionCreators';
17+
18+
import shallowEqual from '../utils/shallow-equal';
19+
import wrapActionCreators from '../utils/wrap-action-creators';
1920
import { isObject, isFunction, isPlainObject} from '../utils/type-checks';
2021
import { omit } from '../utils/omit';
2122
import { invariant } from '../utils/invariant';

0 commit comments

Comments
 (0)