-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
Add test style guide #1918
Add test style guide #1918
Conversation
website/style_guide.md
Outdated
import { assertStrContains } from "https://deno.land/std@v0.3.1/testing/asserts.ts"; | ||
import { test } from "https://deno.land/std@v0.3.1/testing/mod.ts"; | ||
|
||
test(function testingAssertStringContains() { |
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.
Maybe the name of the function here should correspond to the output you give above?
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.
Didn't thought about it but yes
website/style_guide.md
Outdated
} catch (e) { | ||
didThrow = true; | ||
} | ||
assertEquals(didThrow, true); |
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.
Please use a smaller one line example with just a single assertEquals
... I think all this code distracts from the point the style guide is making. This isn't documentation.
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.
edited
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.
LGTM
Improving style guide for tests as mentionned in : denoland/std#130