Eternalcode
Eternalcode

Reputation: 2412

Does dart have a testing framework similar to Javascript's Jasmine?

Is there any test framework in Dart that is as robust as Jasmine

I did use pub test, but it is made me wanting something like Javascript's Jasmine.

Any suggestions?

Upvotes: 1

Views: 195

Answers (1)

Sam Rawlins
Sam Rawlins

Reputation: 93

The test package that you used is as robust as Jasmine. It is backed by tests, can run tests on multiple platforms (VM/server, browsers, Flutter), allows tagging, skipping, grouping, filtering by name, and more.

In what areas do you feel that Jasmine is more robust?

Upvotes: 1

Related Questions