Skip to content

Commit 8c15510

Browse files
committed
chore(data-modeling): temporarily skip unit tests in electron runtime
1 parent e473c9c commit 8c15510

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

packages/compass-data-modeling/src/components/diagram-editor-side-panel.spec.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ async function comboboxSelectItem(
4242
}
4343

4444
describe('DiagramEditorSidePanel', function () {
45+
before(function () {
46+
// TODO(COMPASS-9618): skip in electron runtime for now, drawer has issues rendering
47+
if ((process as any).type === 'renderer') {
48+
this.skip();
49+
}
50+
});
51+
4552
function renderDrawer() {
4653
const { renderWithConnections } = createPluginTestHelpers(
4754
DataModelingWorkspaceTab.provider.withMockServices({})

0 commit comments

Comments
 (0)