Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

karma-dart

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-dart

A Karma plugin - adapter for Dart unittest testing framework.

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11
increased by1000%
Maintainers
1
Weekly downloads
 
Created
Source

Adapter for the Dart unittest testing framework.

For more information on Karma-runner see the homepage.

Getting Started

npm install karma@canary-dart
npm install karma-dart@canary

and that you have the following dependencies in your pubspec.yaml

unittest: any
browser: any
js: any

The following is an example of karma config.

basePath = '.';
frameworks = ['dart-unittest'];

// list of files / patterns to load in the browser
// all tests must be 'included', but all other libraries must be 'server' and
// optionally 'watched' only.
files = [
  'test*.dart',
  {pattern: '**/*.dart', watched: false, included: false, served: true},
  'packages/browser/dart.js'
];

autoWatch = true;

// If browser does not capture in given timeout [ms], kill it
captureTimeout = 5000;

plugins = [
  'karma-dart'
]

You can run karma locally:

node node_modules/karma/bin/karma start karma-dart.conf

Known Limitations/Issues

  • Each test file must be a library -- due to the nature of the test runner, this is required.
  • When Dart syntax error is encountered, karma might get stuck until captureTimeout. There is no way to work around this until https://code.google.com/p/dart/issues/detail?id=5958

Keywords

FAQs

Package last updated on 26 Mar 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc