24 lines
548 B
Plaintext
Raw Normal View History

2019-10-10 13:52:55 +11:00
import { acceptance } from "helpers/qunit-helpers";
2020-01-10 14:41:32 +11:00
import { stubStripe } from "discourse/plugins/discourse-subscriptions/helpers/stripe";
2019-10-10 13:52:55 +11:00
2020-01-10 14:24:39 +11:00
acceptance("Discourse Subscriptions", {
2020-01-10 14:41:32 +11:00
beforeEach() {
stubStripe();
2019-11-12 11:03:04 +11:00
},
2020-01-10 14:41:32 +11:00
2019-11-12 11:03:04 +11:00
loggedIn: true
2019-10-10 13:52:55 +11:00
});
2020-01-10 14:41:32 +11:00
QUnit.test("subscribing", async assert => {
await visit("/s");
2019-10-10 13:52:55 +11:00
2020-01-10 16:47:28 +11:00
await click(".product:first-child a");
assert.ok(
$(".discourse-subscriptions-section-columns").length,
2020-01-12 09:08:00 +11:00
"has the sections for billing"
2020-01-10 16:47:28 +11:00
);
2020-01-12 09:08:00 +11:00
assert.ok($(".subscribe-buttons button").length, "has buttons for subscribe");
2019-10-10 13:52:55 +11:00
});