File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -174,18 +174,18 @@ describe('bind', () => {
174174
175175 it ( 'will not re-bind elements that just had `bind()` called' , async function ( ) {
176176 customElements . define (
177- 'bind-test-not-element' ,
177+ 'bind-test-not-rebind- element' ,
178178 class BindTestNotController extends HTMLElement {
179179 connectedCallback ( ) {
180180 bind ( this )
181181 }
182182 }
183183 )
184- const instance = document . createElement ( 'bind-test-not-element' )
184+ const instance = document . createElement ( 'bind-test-not-rebind- element' )
185185 chai . spy . on ( instance , 'foo' )
186186 listenForBind ( root )
187187 const button = document . createElement ( 'button' )
188- button . setAttribute ( 'data-action' , 'click:bind-test-not-element#foo' )
188+ button . setAttribute ( 'data-action' , 'click:bind-test-not-rebind- element#foo' )
189189 instance . appendChild ( button )
190190 root . appendChild ( instance )
191191 // wait for processQueue
You can’t perform that action at this time.
0 commit comments