stub tests for page components
This commit is contained in:
parent
86b23bdf44
commit
3f2417dd4d
12 changed files with 57 additions and 12 deletions
|
@ -2,7 +2,7 @@ import React from 'react';
|
||||||
import { render } from '@testing-library/react';
|
import { render } from '@testing-library/react';
|
||||||
import Login from './Login';
|
import Login from './Login';
|
||||||
|
|
||||||
test('renders app without crashing', () => {
|
test('renders Login without crashing', () => {
|
||||||
const { getByTestId } = render(<Login />);
|
const { getByTestId } = render(<Login />);
|
||||||
const LoginDiv = getByTestId('Login');
|
const LoginDiv = getByTestId('Login');
|
||||||
expect(LoginDiv).toBeInTheDocument();
|
expect(LoginDiv).toBeInTheDocument();
|
||||||
|
|
|
@ -2,7 +2,7 @@ import React from 'react';
|
||||||
import { render } from '@testing-library/react';
|
import { render } from '@testing-library/react';
|
||||||
import Signup from './Signup';
|
import Signup from './Signup';
|
||||||
|
|
||||||
test('renders app without crashing', () => {
|
test('renders Signup without crashing', () => {
|
||||||
const { getByTestId } = render(<Signup />);
|
const { getByTestId } = render(<Signup />);
|
||||||
const SignupDiv = getByTestId('Signup');
|
const SignupDiv = getByTestId('Signup');
|
||||||
expect(SignupDiv).toBeInTheDocument();
|
expect(SignupDiv).toBeInTheDocument();
|
||||||
|
|
|
@ -3,9 +3,9 @@ import './Account.scss';
|
||||||
|
|
||||||
const Account = () => {
|
const Account = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="Account" data-testid="Account">
|
||||||
<p>Account</p>
|
<p>Account</p>
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
import React from 'react';
|
||||||
|
import { render } from '@testing-library/react';
|
||||||
|
import Account from './Account';
|
||||||
|
|
||||||
|
test('renders Account without crashing', () => {
|
||||||
|
const { getByTestId } = render(<Account />);
|
||||||
|
const AccountDiv = getByTestId('Account');
|
||||||
|
expect(AccountDiv).toBeInTheDocument();
|
||||||
|
});
|
|
@ -3,9 +3,9 @@ import './Game.scss';
|
||||||
|
|
||||||
const Game = () => {
|
const Game = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="Game" data-testid="Game">
|
||||||
<p>Game</p>
|
<p>Game</p>
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
import React from 'react';
|
||||||
|
import { render } from '@testing-library/react';
|
||||||
|
import Game from './Game';
|
||||||
|
|
||||||
|
test('renders Game without crashing', () => {
|
||||||
|
const { getByTestId } = render(<Game />);
|
||||||
|
const GameDiv = getByTestId('Game');
|
||||||
|
expect(GameDiv).toBeInTheDocument();
|
||||||
|
});
|
|
@ -3,9 +3,9 @@ import './Home.scss';
|
||||||
|
|
||||||
const Home = () => {
|
const Home = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="Home" data-testid="Home">
|
||||||
<p>Home</p>
|
<p>Home</p>
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
import React from 'react';
|
||||||
|
import { render } from '@testing-library/react';
|
||||||
|
import Home from './Home';
|
||||||
|
|
||||||
|
test('renders Home without crashing', () => {
|
||||||
|
const { getByTestId } = render(<Home />);
|
||||||
|
const HomeDiv = getByTestId('Home');
|
||||||
|
expect(HomeDiv).toBeInTheDocument();
|
||||||
|
});
|
|
@ -3,9 +3,9 @@ import './News.scss';
|
||||||
|
|
||||||
const News = () => {
|
const News = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="News" data-testid="News">
|
||||||
<p>News</p>
|
<p>News</p>
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
import React from 'react';
|
||||||
|
import { render } from '@testing-library/react';
|
||||||
|
import News from './News';
|
||||||
|
|
||||||
|
test('renders News without crashing', () => {
|
||||||
|
const { getByTestId } = render(<News />);
|
||||||
|
const NewsDiv = getByTestId('News');
|
||||||
|
expect(NewsDiv).toBeInTheDocument();
|
||||||
|
});
|
|
@ -3,9 +3,9 @@ import './Room.scss';
|
||||||
|
|
||||||
const Room = () => {
|
const Room = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="Room" data-testid="Room">
|
||||||
<p>Room</p>
|
<p>Room</p>
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
import React from 'react';
|
||||||
|
import { render } from '@testing-library/react';
|
||||||
|
import Room from './Room';
|
||||||
|
|
||||||
|
test('renders Room without crashing', () => {
|
||||||
|
const { getByTestId } = render(<Room />);
|
||||||
|
const RoomDiv = getByTestId('Room');
|
||||||
|
expect(RoomDiv).toBeInTheDocument();
|
||||||
|
});
|
Loading…
Reference in a new issue