19 lines
448 B
Plaintext
Raw Normal View History

2019-10-09 11:53:58 +11:00
import { acceptance } from "helpers/qunit-helpers";
2019-12-03 11:00:03 +11:00
import { stubStripe } from "discourse/plugins/discourse-subscriptions/helpers/stripe";
2019-10-09 11:53:58 +11:00
acceptance("Discourse Patrons", {
settings: {
discourse_patrons_amounts: "1.00|2.00"
},
beforeEach() {
stubStripe();
}
});
2019-11-07 13:17:54 +11:00
QUnit.skip("viewing the one-off payment page", async assert => {
2019-12-03 11:00:03 +11:00
await visit("/s");
2019-10-09 11:53:58 +11:00
assert.ok($(".donations-page-payment").length, "has payment form class");
});