42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
/* global client */
|
|
|
|
(function () {
|
|
module.exports = function () {
|
|
this.Before(() => {
|
|
// global.expect = require('@xolvio/jasmine-expect').expect;
|
|
|
|
// https://github.com/webdriverio/webdriverio/issues/1145
|
|
if (!this.initMyCmds) {
|
|
client.addCommand('waitForClickable', function elementClickable(selector, timeout) {
|
|
this.waitForVisible(selector, timeout);
|
|
this.waitForEnabled(selector, timeout);
|
|
});
|
|
this.initMyCmds = true;
|
|
}
|
|
|
|
client.windowHandleSize({ width: 1500, height: 1000 });
|
|
|
|
// server.call('fixtures/reset');
|
|
// server.call('emailStub/reset');
|
|
// server.call('emailStub/stub');
|
|
// server.call('fixtures/stubCloudFrontClient');
|
|
|
|
// go to the page first so we have access to the Meteor object
|
|
// console.log('Before all tests...');
|
|
// client.url(process.env.ROOT_URL);
|
|
/* client.executeAsync(function (done) {
|
|
* var customer = {
|
|
* id: 'randomId',
|
|
* email: 'me@example.com',
|
|
* subscriptions: {
|
|
* data: [{
|
|
* current_period_start: 1436716844,
|
|
* current_period_end: 1436716844
|
|
* }]
|
|
* }
|
|
* }; */
|
|
// this call will stub stripe both on the client and server
|
|
// Meteor.call('stripeStub/stub', customer, done);
|
|
});
|
|
};
|
|
}());
|