I would like to load a pageUrl only one time per group.
If I run the full group (not only a single test) I want to load the pageUrl only once (not for each test inside the group).
And if I run a single test, then the pageUrl should be loaded too.
Is that possible?
If not, how can I tell the tests to run one-after-another?
project.plan
project.plan({
group: 'Classes',
preload: [],
pageUrl: '../index.html',
items: [{
group : 'Actions',
items : ['Action.t.js']
}, {
group : 'LocaleProvider',
items : ['LocaleProvider.t.js']
}, {
group : 'Config',
items : ['Config.t.js']
}]
});