Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add unit tests #32

Closed

Conversation

marcosvega91
Copy link
Member

Following up #7 I have started to test the application. I only a draft for now.

@marcosvega91 marcosvega91 marked this pull request as draft May 28, 2020 07:27
import { getData } from './queryAdvise';
import { renderIntoDocument } from '../../tests/utils/dom-render';

describe('queryAdvise', () => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need for this describe, since the filename's already saying we're testing queryAdvise

import { renderIntoDocument } from '../../tests/utils/dom-render';

describe('queryAdvise', () => {
describe('getData', () => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should also make this file more flat

https://kentcdodds.com/blog/avoid-nesting-when-youre-testing

<input placeholder="I'm a placeholder" />
</div>`);
};
describe('parser', () => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need for this describe, since the filename's already saying we're testing parser

htmlRoot: container,
js: 'screen.getByText("I\'m a label")',
});
expect(result).toMatchSnapshot();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think using inline snapshots would be better instead

https://kentcdodds.com/blog/effective-snapshot-testing

@smeijer smeijer changed the base branch from master to develop May 31, 2020 12:48
@@ -0,0 +1,13 @@
import { ensureArray } from './ensureArray';

describe('ensureArray', () => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need for this describe, since the filename's already saying we're testing ensureArray

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agree. We can build tests without describe and using test instead of it. Looks cleaner.

@@ -0,0 +1,57 @@
import state from './state';

describe('state', () => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need for this describe, since the filename's already saying we're testing state

import state from './state';

describe('state', () => {
describe('updateTitle', () => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should also make this file more flat

https://kentcdodds.com/blog/avoid-nesting-when-youre-testing

@smeijer smeijer changed the title feat: add tests chore: add unit tests May 31, 2020
@marcosvega91
Copy link
Member Author

I'm closing this because is very expensive now test everything. I think is better to add test on every PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants