discourse-subscriptions/test/javascripts/components/stripe-card-test.js.es6

34 lines
637 B
Plaintext
Raw Normal View History

2017-02-23 20:12:28 -05:00
import componentTest from 'helpers/component-test';
moduleForComponent('stripe-card', { integration: true });
window.Stripe = function() {
return {
elements: function() {
return {
create: function() {
return {
mount: function() {},
card: function() {}
};
}
};
},
};
};
2017-02-23 20:12:28 -05:00
componentTest('stripe card', {
template: `{{stripe-card donateAmounts=donateAmounts}}`,
skip: true,
beforeEach() {
Discourse.SiteSettings.discourse_donations_types = '';
this.set('donateAmounts', [{ value: 2 }]);
},
2017-03-15 22:09:32 -04:00
2017-02-23 20:12:28 -05:00
test(assert) {
assert.ok(true);
2017-02-23 20:12:28 -05:00
}
});