se-runner-browserstack-example
Version:
Ready to run example using se-runner with grunt-se-runner and se-runner-framework-jasmine towards BrowserStack
11 lines (9 loc) • 420 B
JavaScript
module.exports = function (context, next) {
describe('When clicking poster play button', function () {
beforeAll(require('../../spec-components/setup/async-click-play-button')(context));
require('./it-should-have-loaded')(context);
require('./it-should-have-played')(context);
require('./it-should-have-gotten-duration')(context);
next && next(context);
});
};