We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Nice tests in general!
Beauty/src/test.js
Lines 55 to 66 in 9b9fd91
in the above snippet, the line:
t.equal(res.statusCode, 200, 'response should be 200');
is not needed, because it is covered by the line:
.expect(200)
This happens in a couple of your tests.
The text was updated successfully, but these errors were encountered:
@mattlub we fix it , thanks 320ffa4
Sorry, something went wrong.
No branches or pull requests
Nice tests in general!
Beauty/src/test.js
Lines 55 to 66 in 9b9fd91
in the above snippet, the line:
is not needed, because it is covered by the line:
This happens in a couple of your tests.
The text was updated successfully, but these errors were encountered: