Skip to content

Commit 85e5f7f

Browse files
authored
Remove unused variables
1 parent fb28132 commit 85e5f7f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/ability.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {expect, fixture, html} from '@open-wc/testing'
22
import {restore, fake} from 'sinon'
3-
import {createAbility, attachShadowCallback, attachInternalsCallback, updateCallback} from '../src/ability.js'
3+
import {createAbility, attachShadowCallback, attachInternalsCallback} from '../src/ability.js'
44

55
describe('ability', () => {
66
let calls = []
@@ -205,7 +205,7 @@ describe('ability', () => {
205205
})
206206

207207
it('does not error if shadowdom is disabled', async () => {
208-
const instance = await fixture(html`<disabled-shadow-ability></disabled-shadow-ability>`)
208+
await fixture(html`<disabled-shadow-ability></disabled-shadow-ability>`)
209209
expect(attachShadowFake).to.be.have.callCount(0)
210210
})
211211
})

0 commit comments

Comments
 (0)