Skip to content
Snippets Groups Projects
Commit 3ed99960 authored by Kevin Moore's avatar Kevin Moore
Browse files

Allow the latest analyzer pkg

R=nweiz@google.com

Review URL: https://codereview.chromium.org//1103703002
parent 89cb7711
No related branches found
No related tags found
No related merge requests found
......@@ -98,7 +98,7 @@ well by passing `pub run test:test -p chrome path/to/test.dart`.
`test` will take care of starting the browser and loading the tests, and all
the results will be reported on the command line just like for VM tests. In
fact, you can even run tests on both platforms with a single command: `pub run
test:test -p chrome -p vm path/to/test.dart`.
test:test -p chrome,vm path/to/test.dart`.
### Restricting Tests to Certain Platforms
......@@ -357,7 +357,7 @@ void main() {
group("complicated algorithm tests", () {
// ...
}, skip: "the algorithm isn't quite right");
test("error-checking test", () {
// ...
}, skip: "TODO: add error-checking.");
......
name: test
version: 0.12.0-rc.0
version: 0.12.0-dev
author: Dart Team <misc@dartlang.org>
description: A library for writing dart unit tests.
homepage: https://github.com/dart-lang/test
environment:
sdk: '>=1.8.0 <2.0.0'
dependencies:
analyzer: '>=0.23.0 <0.25.0'
analyzer: '>=0.23.0 <0.26.0'
args: '>=0.12.1 <0.14.0'
barback: '>=0.14.0 <0.16.0'
crypto: '^0.9.0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment