Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
karma-osx-reporter
Advanced tools
Reporter using Mac OS 10.8+ Notification Center to display results.
Built on top of node-osx-notifier and based on AvnerCohen's code.
Works with Karma 0.9 or later.
For more information on Karma see the homepage.
a. Globally. System-wide with karma
available on command line.
```sh
npm install -g karma
npm install -g karma-osx-reporter
```
b. Locally to your project (preferred). Simply run:
```sh
npm install karma --save-dev
npm install karma-osx-reporter --save-dev
```
or add the dependencies to `package.json` manually and run `npm install`:
```js
"devDependencies": {
"karma": ">=0.9",
"karma-osx-reporter": "*"
}
```
If you install locally, you'll need to run Karma using `node_modules/karma/bin/karma`.
In any case, the plugin needs to be installed as a peer dependency to Karma (i.e. in the sibling folder). This just means you cannot use global Karma with local plugins or vice-versa.
reporters: ['progress', 'osx']
or pass through the command line
$ karma start --reporters=progress,osx karma.conf.js
OSX Notifier runs on localhost:1337 by default. If you need to change that, simply override it in the Karma config file.
config.set({
osxReporter: {
host: "localhost",
port: 1337
}
});
always
- always show a notificationchange
- show a notification when the current result is different than the lastfailOnly
- show a notification if the result is failfailChange
- show a notification when the result is fail or first success after failconfig.set({
osxReporter: {
notificationMode: 'always'
}
})
Any additional parameter will be passed to node-osx-notifier. Check the documentation for details. Some examples:
config.set({
osxReporter: {
activate: 'com.apple.Terminal',
open: 'http://google.com',
execute: 'open .'
}
});
To decide dynamically what to pass into these options, define them as functions:
config.set({
osxReporter: {
activate: function(results, browser) {
return results.failed > 0 ? 'com.apple.Terminal' : 'com.apple.Safari';
}
}
});
MIT License
FAQs
A Karma plugin. Report results with OSX Notification Center.
The npm package karma-osx-reporter receives a total of 629 weekly downloads. As such, karma-osx-reporter popularity was classified as not popular.
We found that karma-osx-reporter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.