Continued porting to react

This commit is contained in:
Colin McLeod
2016-02-02 09:13:59 -08:00
parent b42a812a45
commit d783a38588
43 changed files with 679 additions and 411 deletions

37
__tests__/test-persist.js Normal file
View File

@@ -0,0 +1,37 @@
jest.dontMock('../src/app/stores/Persist');
import React from 'react';
import ReactDOM from 'react-dom';
import TU from 'react-testutils-additions';
xdescribe('Persist', function() {
const Persist = require('../src/app/stores/Persist').default;
describe('Builds', function() {
});
describe('Comparisons', function() {
});
describe('Settings', function() {
it("has defaults", function() {
expect(false).toBeTruthy('Implement');
});
it("loads from localStorage correctly", function() {
expect(false).toBeTruthy('Implement');
});
it("generates the backup", function() {
expect(false).toBeTruthy('Implement');
});
});
});