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

Writing results many times #116

Open
bset opened this issue Feb 22, 2015 · 0 comments
Open

Writing results many times #116

bset opened this issue Feb 22, 2015 · 0 comments

Comments

@bset
Copy link

bset commented Feb 22, 2015

I have this code in my app:

var testRunner = require("qunit");

testRunner.setup({
    log: {
        assertions: true,
        summary: true
    }
});

testRunner.run({
    code: "./libs/clubCreation",
    tests: "./tests/modulesTests/clubCreation"
});

testRunner.run({
    code: "./libs/news",
    tests: "./tests/modulesTests/news"
});

testRunner.run({
    code: "./libs/registration",
    tests: "./tests/modulesTests/registration"
});

testRunner.run({
    code: "./libs/utils",
    tests: "./tests/modulesTests/utils"
});

So for every of these tests there is new information in console. And besides it is a result of the first test, then a result of the first and second tests etc. Is it bug or do I do something wrong?

P.S. Tests are ran only one time but information is written many times

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

No branches or pull requests

2 participants