mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 06:43:24 +00:00
38 lines
689 B
JavaScript
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');
|
|
});
|
|
|
|
});
|
|
|
|
});
|