Files
coriolis/__tests__/test-persist.js
2016-02-02 09:13:59 -08:00

38 lines
689 B
JavaScript

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');
});
});
});