Move tests to the root

This commit is contained in:
Roman 2016-02-15 01:10:25 +05:00
parent 5d46a6ecd2
commit e068203893
16 changed files with 25 additions and 37 deletions

View file

@ -0,0 +1,21 @@
var GlobalStateActions = require('../src/js/actions/GlobalStateActions');
var GlobalStateStore = require('../src/js/stores/GlobalStateStore');
describe('this store', function() {
it('is can change animating', function() {
expect(GlobalStateStore.getIsAnimating()).toEqual(false);
GlobalStateActions.changeIsAnimating(true);
expect(GlobalStateStore.getIsAnimating()).toEqual(true);
GlobalStateActions.changeIsAnimating(false);
expect(GlobalStateStore.getIsAnimating()).toEqual(false);
});
it('can change flip treey', function() {
expect(GlobalStateStore.getFlipTreeY()).toEqual(false);
GlobalStateActions.changeFlipTreeY(true);
expect(GlobalStateStore.getFlipTreeY()).toEqual(true);
GlobalStateActions.changeFlipTreeY(false);
expect(GlobalStateStore.getFlipTreeY()).toEqual(false);
});
});