Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
geido committed Nov 8, 2022
1 parent da6f172 commit bbb6c48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ describe('Native filters', () => {
cy.preserveLogin();
});

describe.only('Nativefilters tests initial state required', () => {
describe('Nativefilters tests initial state required', () => {
beforeEach(() => {
cy.createSampleDashboards([0]);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ export default function ResizeObserver(callback: ObserveCallback) {
allCallbacks.push(callback);
}
},
unobserve() {
if (callback) {
allCallbacks.splice(allCallbacks.indexOf(callback), 1);
}
},
};
}

Expand Down

0 comments on commit bbb6c48

Please sign in to comment.