Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions test/check_resolution_up_to_date_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ void main() {
output: contains('Resolution is up-to-date'),
exitCode: 0,
);

// Timestamp resolution is rather poor especially on windows.
await Future<Null>.delayed(const Duration(seconds: 1));

await d.appDir(dependencies: {'foo': '2.0.0'}).create();
Expand Down Expand Up @@ -96,6 +98,9 @@ void main() {
),
]).create();

// Timestamp resolution is rather poor especially on windows.
await Future<Null>.delayed(const Duration(seconds: 1));

await runPub(
args: ['check-resolution-up-to-date'],
environment: {'_PUB_TEST_SDK_VERSION': '3.5.0'},
Expand Down
Loading