Skip to content

Commit

Permalink
Move remote_listener to test_api (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
grouma authored Nov 5, 2018
1 parent fe4242e commit 787a60d
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 8 deletions.
4 changes: 4 additions & 0 deletions pkgs/test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.5.1

* Depend on latest `test_core` and `test_api`.

## 1.5.0

* Depend on `package:test_core` for core functionality.
Expand Down
6 changes: 3 additions & 3 deletions pkgs/test/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: test
version: 1.5.0
version: 1.5.1
author: Dart Team <[email protected]>
description: A full featured library for writing and running Dart tests.
homepage: https://github.com/dart-lang/test/pkgs/test
Expand Down Expand Up @@ -30,8 +30,8 @@ dependencies:
web_socket_channel: '^1.0.0'
yaml: '^2.0.0'
# Use an exact version until the test_api and test_core package are stable.
test_api: '0.2.0'
test_core: '0.1.0'
test_api: '0.2.1'
test_core: '0.2.0'
dev_dependencies:
fake_async: '>=0.1.2 <2.0.0'
pedantic: '1.1.0'
Expand Down
5 changes: 5 additions & 0 deletions pkgs/test_api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.2.1

* Add `remote_listener.dart` and `suite_channel_manager.dart`.


## 0.2.0

* Remove "runner" extensions.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion pkgs/test_api/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: test_api
version: 0.2.0
version: 0.2.1
author: Dart Team <[email protected]>
description: A library for writing Dart tests.
homepage: https://github.com/dart-lang/test/pkgs/test_api
Expand Down
6 changes: 6 additions & 0 deletions pkgs/test_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.2.0

* Remove `remote_listener.dart` and `suite_channel_manager.dart` from runner
and depend on them from `test_api`.


## 0.1.0

* Initial release of `test_core`. Provides the basic API for writing and running
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import 'package:stream_channel/stream_channel.dart';
import 'package:test_api/src/backend/stack_trace_formatter.dart'; // ignore: implementation_imports
import 'package:test_api/src/util/stack_trace_mapper.dart'; // ignore: implementation_imports

import '../remote_listener.dart';
import '../suite_channel_manager.dart';
import 'package:test_api/src/remote_listener.dart'; // ignore: implementation_imports
import 'package:test_api/src/suite_channel_manager.dart'; // ignore: implementation_imports

/// Returns a channel that will emit a serialized representation of the tests
/// defined in [getMain].
Expand Down
3 changes: 1 addition & 2 deletions pkgs/test_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: test_core
version: 0.1.0
version: 0.2.0
author: Dart Team <[email protected]>
description: A basic library for writing tests and running them on the VM.
homepage: https://github.com/dart-lang/test/pkgs/test_core
Expand All @@ -23,7 +23,6 @@ dependencies:
source_span: '^1.4.0'
stack_trace: '^1.9.0'
stream_channel: '^1.6.0'
term_glyph: '^1.0.0'
vm_service_client: '^0.2.3'
yaml: '^2.0.0'
# Use a tight version constraint to ensure that a constraint on matcher
Expand Down

0 comments on commit 787a60d

Please sign in to comment.