Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Additional reporter doesn't works #26

Open
janbaer opened this issue Nov 23, 2014 · 1 comment
Open

Additional reporter doesn't works #26

janbaer opened this issue Nov 23, 2014 · 1 comment

Comments

@janbaer
Copy link

janbaer commented Nov 23, 2014

Hello Julie, I

I'm trying to add the jasmine-growl-reporter from here, but it doesn't works. The reporter should be compatible to Jasmine 2.0 Have I made something wrong? I enabled also the verbose output, but I don't see any errors.

var miniJasmineLib = require('minijasminenode');
var growlReporter = require('jasmine-growl-reporter');

miniJasmineLib.addReporter(growlReporter);

var options = {
  specs: ['./spec/calculator.spec.js'],
  onComplete: function (passed) {
    console.log('I\'m done with the tests...');
  },
  showColors: true,
  isVerbose: true
};

miniJasmineLib.executeSpecs(options);
@janbaer
Copy link
Author

janbaer commented Nov 23, 2014

I tried to show a message with growl directly and this has worked.

var miniJasmineLib = require('minijasminenode');
var growl = require('growl');

var options = {
  specs: ['./spec/calculator.spec.js'],
  onComplete: function (passed) {
    growl('I\'m done with the tests...', { title: 'Jasmine Tests'});
    console.log('I\'m done with the tests...');
  },
  showColors: true,
  isVerbose: true
};

miniJasmineLib.executeSpecs(options);

But of course I would like to see some more messages with growl.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant