mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 14:45:35 +00:00
Continued porting to react
This commit is contained in:
37
__tests__/test-persist.js
Normal file
37
__tests__/test-persist.js
Normal 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');
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user