Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
raineorshine committed Nov 23, 2024
1 parent 64a8f4b commit 5716cce
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/__tests__/Divider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
4 changes: 2 additions & 2 deletions src/redux-middleware/__tests__/pullQueue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
2 changes: 1 addition & 1 deletion src/shortcuts/__tests__/deleteEmptyThoughtOrOutdent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand Down

0 comments on commit 5716cce

Please sign in to comment.