Skip to content
Snippets Groups Projects
Commit 3a2fe00f authored by Tadeusz Miesiąc's avatar Tadeusz Miesiąc
Browse files

refactor(removed component tests): component tests are reundant atm, removed it

parent 3d1e0ddb
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!6feat(set up placeholders for layout): set up placeholders for layout
Pipeline #78480 failed
import React from 'react';
import { RenderResult, render } from '@testing-library/react';
import { MinervaSPA } from '.';
const renderComponent = (): RenderResult => render(<MinervaSPA />);
describe('MinervaSPA - component', () => {
it('should include navbar true', () => {
renderComponent();
expect(false).toBe(true);
});
it('should include map', () => {
renderComponent();
expect(false).toBe(true);
});
it('should include top bar', () => {
renderComponent();
expect(false).toBe(true);
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment