Skip to content

Commit

Permalink
fix: remove unused screen debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Tannum committed Feb 21, 2025
1 parent 3102f13 commit 8c82443
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* Copyright 2025 Cognite AS
*/
import { render, screen } from '@testing-library/react';
import { render } from '@testing-library/react';
import { describe, expect, it, vi } from 'vitest';
import type { PropsWithChildren, ReactElement } from 'react';
import { Reveal3DResources } from './Reveal3DResources';
Expand Down Expand Up @@ -50,7 +50,6 @@ describe(Reveal3DResources.name, () => {
</Reveal3DResourcesContext.Provider>
);
render(<Reveal3DResources {...defaultProps} />, { wrapper });
screen.debug();
});

it('should mount CadModelContainer if styling is resolved', () => {
Expand Down Expand Up @@ -81,7 +80,6 @@ describe(Reveal3DResources.name, () => {
wrapper
});
expect(CadModelContainer).toHaveBeenCalledTimes(2);
screen.debug();
});

it('should mount PointCloudContainer if styling is resolved', () => {
Expand Down

0 comments on commit 8c82443

Please sign in to comment.