1
0
mirror of synced 2026-08-05 14:47:03 +00:00

DEV: Prefix all test names (#238)

This commit is contained in:
Jarek Radosz
2024-09-18 01:49:28 +02:00
committed by GitHub
parent ef820ca2e0
commit 937d099692
6 changed files with 8 additions and 8 deletions
@@ -4,10 +4,10 @@ import componentTest, {
} from "discourse/tests/helpers/component-test";
import { count, discourseModule } from "discourse/tests/helpers/qunit-helpers";
discourseModule("payment-options", function (hooks) {
discourseModule("Subscriptions | payment-options", function (hooks) {
setupRenderingTest(hooks);
componentTest("Discourse Subscriptions payment options have no plans", {
componentTest("payment options have no plans", {
template: hbs`{{payment-options plans=plans}}`,
async test(assert) {
@@ -21,7 +21,7 @@ discourseModule("payment-options", function (hooks) {
},
});
componentTest("Discourse Subscriptions payment options has content", {
componentTest("payment options has content", {
template: hbs`{{payment-options
plans=plans
selectedPlan=selectedPlan
@@ -8,7 +8,7 @@ import {
query,
} from "discourse/tests/helpers/qunit-helpers";
discourseModule("payment-plan", function (hooks) {
discourseModule("Subscriptions | payment-plan", function (hooks) {
setupRenderingTest(hooks);
componentTest("Payment plan subscription button rendered", {