How do you run a dart test?

A single test file can be run just using dart test path/to/test. dart (as of Dart 2.10 – prior sdk versions must use pub run test instead of dart test ). Many tests can be run at a time using dart test path/to/dir . It’s also possible to run a test on the Dart VM only by invoking it using dart path/to/test.

Read more