Browse Source

enabling back to check travis stopping release correctly

Daniel Zlotin 7 years ago
parent
commit
b946567bbc
4 changed files with 4 additions and 4 deletions
  1. 1
    1
      .travis.yml
  2. 1
    1
      integration/remx/component.js
  3. 2
    2
      integration/remx/remx.test.js
  4. 0
    0
      integration/remx/store.js

+ 1
- 1
.travis.yml View File

43
   - yarn run test-js
43
   - yarn run test-js
44
   - ./scripts/installAndroidSDK.sh
44
   - ./scripts/installAndroidSDK.sh
45
   - yarn run test-android
45
   - yarn run test-android
46
-#  - yarn run release
46
+  - yarn run release
47
 
47
 
48
 after_script:
48
 after_script:
49
   - echo "BUILD FINISHED"
49
   - echo "BUILD FINISHED"

integration/remx/remxComponent.js → integration/remx/component.js View File

3
 
3
 
4
 import {connect} from 'remx/react-native';
4
 import {connect} from 'remx/react-native';
5
 
5
 
6
-import {selectors} from './remxStore';
6
+import {selectors} from './store';
7
 
7
 
8
 class MyContainer extends Component {
8
 class MyContainer extends Component {
9
   constructor(props) {
9
   constructor(props) {

+ 2
- 2
integration/remx/remx.test.js View File

7
   let store;
7
   let store;
8
 
8
 
9
   beforeEach(() => {
9
   beforeEach(() => {
10
-    MyConnectedContainer = require('./remxComponent').default;
11
-    store = require('./remxStore');
10
+    MyConnectedContainer = require('./component').default;
11
+    store = require('./store');
12
   });
12
   });
13
 
13
 
14
   it('renders normally', () => {
14
   it('renders normally', () => {

integration/remx/remxStore.js → integration/remx/store.js View File