| 2 | import {afterEach, beforeEach, describe, it} from 'mocha'; |
| 3 | import {recordUiEdit, stores, storePrefix} from '../src/persistence'; |
| 4 | const longString = pow => { |
| 5 | let s = 's'; |
| 6 | for (let i = 0; i < pow; i++) { |
| 7 | s += s; |
| 8 | } |
| 9 | return s; |
| 10 | }; |
| 11 | |
| 12 | const fillStorage = (store, key) => { |
| 13 | // double the attempted string until we fail |
no outgoing calls
no test coverage detected
searching dependent graphs…