25 lines
431 B
JavaScript
25 lines
431 B
JavaScript
import componentTest from 'helpers/component-test';
|
|
|
|
moduleForComponent('stripe-card', { integration: true });
|
|
|
|
window.Stripe = function() {
|
|
return {
|
|
elements: function() {
|
|
return {
|
|
create: function() {
|
|
return {
|
|
mount: function() {}
|
|
};
|
|
}
|
|
};
|
|
},
|
|
};
|
|
};
|
|
|
|
componentTest('stripe card', {
|
|
template: `{{stripe-card}}`,
|
|
test(assert) {
|
|
assert.ok(true);
|
|
}
|
|
});
|