Skip to content

Commit

Permalink
Remove unneeded convo logic dep + tags cache tests
Browse files Browse the repository at this point in the history
  • Loading branch information
poltak committed Jun 30, 2022
1 parent d845001 commit 68c5ac4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
8 changes: 0 additions & 8 deletions src/sidebar/annotations-sidebar/containers/logic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,6 @@ export class SidebarContainerLogic extends UILogic<
},
getSharedAnnotationLinkID: ({ id }) =>
typeof id === 'string' ? id : id.toString(),
getOrCreateConversationThread: async ({
annotationReference,
...params
}) =>
options.contentConversationsBG.getOrCreateThread({
...params,
sharedAnnotationReference: annotationReference,
}),
getRepliesByAnnotation: async ({
annotationReference,
sharedListReference,
Expand Down
4 changes: 2 additions & 2 deletions src/tags/background/storage.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ describe('Tags background interface', () => {
})
})

describe('Tag Cache', () => {
describe.skip('Tag Cache', () => {
async function setupTest() {
const setup = await setupBackgroundIntegrationTest({
includePostSyncProcessor: true,
Expand All @@ -91,7 +91,7 @@ describe('Tag Cache', () => {
return { tagsModule }
}

describe('modifies cache', () => {
describe.skip('modifies cache', () => {
test('add tags', async () => {
const { tagsModule } = await setupTest()
const { tag, url } = DATA.TAGS_1
Expand Down

0 comments on commit 68c5ac4

Please sign in to comment.