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

NaN as a response for perfRunner.getStats('MessageLoop::RunTask') #48

Open
henriquelbsouza opened this issue Feb 16, 2017 · 0 comments
Open

Comments

@henriquelbsouza
Copy link
Contributor

henriquelbsouza commented Feb 16, 2017

fit('load 500 items in less than 25 seconds', function() {
        element(by.model('some_element'))
        .all(by.tagName('option'))
        .get(2)
        .click();

        perfRunner.start();
        element(by.id('filter')).click();
        element.all(by.id('ready')).get(495).click();

        perfRunner.stop();

        if (perfRunner.isEnabled) {
            expect(perfRunner.getStats('MessageLoop::RunTask')).toBeLessThan(70000);
        }
    });

There is only one test that it is happening. If I run with the other tests, he passes with the same time the test before...

The tests are the same (exactly), only the quantity of return from backend changes.

Anyone have any idea on what could be happening? Or how can I do a deeper debug and find the problem? :)

Thanks

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