diff --git a/src/components/__tests__/Divider.ts b/src/components/__tests__/Divider.ts index ea077da8c7..d9e8810d6a 100644 --- a/src/components/__tests__/Divider.ts +++ b/src/components/__tests__/Divider.ts @@ -23,12 +23,12 @@ describe('Divider', () => { const divider1 = screen.queryByLabelText('divider') expect(divider1).toBeNull() - // // '--' is not a divider + // '--' is not a divider await user.type(editable!, '-') const divider2 = screen.queryByLabelText('divider') expect(divider2).toBeNull() - // // '--' is a divider + // '--' is a divider await user.type(editable!, '-') const divider3 = screen.queryByLabelText('divider') expect(divider3).toBeTruthy() diff --git a/src/redux-middleware/__tests__/pullQueue.ts b/src/redux-middleware/__tests__/pullQueue.ts index 499c980745..b64b8fecf7 100644 --- a/src/redux-middleware/__tests__/pullQueue.ts +++ b/src/redux-middleware/__tests__/pullQueue.ts @@ -124,8 +124,8 @@ it('load buffered thoughts', async () => { await matchContextsChildren(db, ['a', 'b', 'c', 'd'], [{ value: 'e' }]) await matchContextsChildren(db, ['a', 'b', 'c', 'd', 'e'], []) - // // clear state - // // call initialize again to reload from db (simulating page refresh) + // clear state + // call initialize again to reload from db (simulating page refresh) await refreshTestApp() diff --git a/src/shortcuts/__tests__/deleteEmptyThoughtOrOutdent.ts b/src/shortcuts/__tests__/deleteEmptyThoughtOrOutdent.ts index 95606ca81a..2444bbd001 100644 --- a/src/shortcuts/__tests__/deleteEmptyThoughtOrOutdent.ts +++ b/src/shortcuts/__tests__/deleteEmptyThoughtOrOutdent.ts @@ -15,7 +15,7 @@ import clearThoughtShortcut from '../clearThought' import deleteEmptyThoughtOrOutdent from '../deleteEmptyThoughtOrOutdent' /** - * This has been to the top because the rest of the tests aren't getting cleaned up. + * This has been moved to the top because the rest of the tests aren't getting cleaned up. * This should be properly fixed at some point. */ describe('DOM', () => {