2022-03-06 18:30:01 -05:00
|
|
|
import { acceptance, count } from "discourse/tests/helpers/qunit-helpers";
|
2020-01-09 22:41:32 -05:00
|
|
|
import { stubStripe } from "discourse/plugins/discourse-subscriptions/helpers/stripe";
|
2022-03-06 18:30:01 -05:00
|
|
|
import { click, visit } from "@ember/test-helpers";
|
2022-03-07 08:34:05 -05:00
|
|
|
import { test } from "qunit";
|
2019-10-09 22:52:55 -04:00
|
|
|
|
2021-01-04 14:32:33 -05:00
|
|
|
acceptance("Discourse Subscriptions", function (needs) {
|
|
|
|
needs.user();
|
2022-03-06 18:30:01 -05:00
|
|
|
needs.hooks.beforeEach(function () {
|
2020-01-09 22:41:32 -05:00
|
|
|
stubStripe();
|
2021-01-04 14:32:33 -05:00
|
|
|
});
|
2020-01-09 22:41:32 -05:00
|
|
|
|
2022-03-06 18:30:01 -05:00
|
|
|
test("subscribing", async function (assert) {
|
2021-01-04 14:32:33 -05:00
|
|
|
await visit("/s");
|
|
|
|
await click(".product:first-child a");
|
2020-01-10 00:47:28 -05:00
|
|
|
|
2021-01-04 14:32:33 -05:00
|
|
|
assert.ok(
|
2022-03-06 18:30:01 -05:00
|
|
|
count(".discourse-subscriptions-section-columns") > 0,
|
2021-01-04 14:32:33 -05:00
|
|
|
"has the sections for billing"
|
|
|
|
);
|
2020-01-11 17:08:00 -05:00
|
|
|
|
2021-01-04 14:32:33 -05:00
|
|
|
assert.ok(
|
2022-03-06 18:30:01 -05:00
|
|
|
count(".subscribe-buttons button") > 0,
|
2021-01-04 14:32:33 -05:00
|
|
|
"has buttons for subscribe"
|
|
|
|
);
|
|
|
|
});
|
2019-10-09 22:52:55 -04:00
|
|
|
});
|