Skip to content

Commit

Permalink
Close sandbox render test and update typo
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellemaxwell committed Jan 17, 2024
1 parent 6603759 commit 87fad57
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,15 @@ vi.mock('react-router-dom', () => ({
NavLink: ({ children }) => children,
}));

describe('Onboarding layout', () => {
describe('Sandbox layout', () => {
it('should render', () => {
const { container } = renderSandboxLayout();
expect(container).toMatchSnapshot();
expect(screen.getByTestId('sandbox-layout')).toBeInTheDocument();
});

it('should display the sandbox sidebar', () => {
renderSandboxLayout();
expect(screen.getByTestId('sandbox-sidebar')).toBeInTheDocument();
});
});
});

0 comments on commit 87fad57

Please sign in to comment.