-
Notifications
You must be signed in to change notification settings - Fork 215
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
Multiple Links broken (404) #2218
Comments
@crcdng: thanks for reporting it. |
I think some APIs moved their actual implementations around, it is re-exported from the original libraries so it wasn't breaking but it did change the dartdoc links. |
We should try to use links to the same library that users will import from instead of linking to the defining library (or even defining package). |
Closes #2218 These links were to the defining library, which can change without a user visible breaking change or major version bump. Link instead to the `package:test/test.dart` library docs for all APIs. The export makes the dartdoc links work, and these are more stable since they are user facing and will only change in a major version release.
Closes #2218 These links were to the defining library, which can change without a user visible breaking change or major version bump. Link instead to the `package:test/test.dart` library docs for all APIs. The export makes the dartdoc links work, and these are more stable since they are user facing and will only change in a major version release.
URL: https://pub.dev/packages/test
In section https://pub.dev/packages/test#writing-tests
"Tests are specified using the top-level test() function."
"Tests can be grouped together using the group() function."
"You can use the setUp() and tearDown() functions to share code between tests"
These links are broken (404).
The text was updated successfully, but these errors were encountered: