This commit is contained in:
Rimian Perkins 2019-09-11 22:17:07 +10:00
parent 73258b10b9
commit 11b2917254
3 changed files with 2 additions and 3 deletions

View File

@ -34,7 +34,7 @@ export default Ember.Component.extend({
this.set('paymentError', paymentIntent.error);
}
else {
console.log('ok done');
// console.log('ok done');
}
});
},

View File

@ -1,4 +1,3 @@
import { ajax } from "discourse/lib/ajax";
export default Ember.Controller.extend({

View File

@ -31,7 +31,7 @@ componentTest("Discourse Patrons stripe card success", {
async test(assert) {
assert.expect(1);
this.set("onSubmit", (arg) => {
this.set("onSubmit", () => {
assert.ok(true, "payment method created");
});