-
-
Notifications
You must be signed in to change notification settings - Fork 63
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
chore: add unit tests #32
Conversation
import { getData } from './queryAdvise'; | ||
import { renderIntoDocument } from '../../tests/utils/dom-render'; | ||
|
||
describe('queryAdvise', () => { |
There was a problem hiding this comment.
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', () => { |
There was a problem hiding this comment.
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', () => { |
There was a problem hiding this comment.
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(); |
There was a problem hiding this comment.
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
src/lib/ensureArray.test.js
Outdated
@@ -0,0 +1,13 @@ | |||
import { ensureArray } from './ensureArray'; | |||
|
|||
describe('ensureArray', () => { |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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', () => { |
There was a problem hiding this comment.
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', () => { |
There was a problem hiding this comment.
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
I'm closing this because is very expensive now test everything. I think is better to add test on every PR |
Following up #7 I have started to test the application. I only a draft for now.