Adelin
Adelin

Reputation: 18971

Testacular does not run e2e test

Once again I have problems running my angularJS e2e test with testacular. This time the output is

Chrome 23.0: Executed 0 of 13 (skipped 13) SUCCESS (0.117 secs / 0 secs)
info: Disconnecting all browsers 

no test are run, here is my config file.

basePath = './';

files = [
    ANGULAR_SCENARIO,
    ANGULAR_SCENARIO_ADAPTER,
    'e2e/*.js'
];

autoWatch = false;

browsers = ['Chrome'];

singleRun = true;

proxies = {
    '/': 'http://localhost:8080/'
};

Upvotes: 0

Views: 1093

Answers (1)

Adelin
Adelin

Reputation: 18971

Ok guys, here is a solution for this problem. I posted this question in angular google groups and here is the link: https://groups.google.com/forum/?fromgroups=#!topic/testacular/fumqhOAEH3s it was a bug and it is fixed by the author.

Upvotes: 3

Related Questions