Skip to content
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

Remove dependency on test. #159

Merged
merged 2 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions pkgs/leak_tracker_flutter_testing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.0.8

* Set version of leak_tracker_testing to `^1.0.5`.

# 1.0.7

* Make configuration adjustable.
Expand Down
4 changes: 2 additions & 2 deletions pkgs/leak_tracker_flutter_testing/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: leak_tracker_flutter_testing
version: 1.0.7
version: 1.0.8
description: Flutter specific helpers for dart memory leak tracking.
repository: https://github.com/dart-lang/leak_tracker/tree/main/pkgs/leak_tracker_flutter_testing

Expand All @@ -12,7 +12,7 @@ dependencies:
flutter_test:
sdk: flutter
leak_tracker: ^9.0.6
leak_tracker_testing: ^1.0.3
leak_tracker_testing: ^1.0.5
meta: ^1.8.0

dev_dependencies:
Expand Down
4 changes: 4 additions & 0 deletions pkgs/leak_tracker_testing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.0.5

* Stop depending on test.

# 1.0.4

* Bump version of SDK to 3.1.2.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/leak_tracker_testing/lib/src/matchers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

import 'package:leak_tracker/leak_tracker.dart';
import 'package:test/test.dart';
import 'package:matcher/matcher.dart';

/// Checks if the leak collection is empty.
const Matcher isLeakFree = _IsLeakFree();
Expand Down
4 changes: 2 additions & 2 deletions pkgs/leak_tracker_testing/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: leak_tracker_testing
version: 1.0.4
version: 1.0.5
description: Leak tracking code intended for usage in tests.
repository: https://github.com/dart-lang/leak_tracker/tree/main/pkgs/leak_tracker_testing

Expand All @@ -8,7 +8,7 @@ environment:

dependencies:
leak_tracker: '>=9.0.0 <11.0.0'
test: ^1.16.0
matcher: ^0.12.16

dev_dependencies:
flutter_lints: ^3.0.0
Expand Down