11 lines
420 B
TypeScript
11 lines
420 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { IS_STRIPE_ENABLED, IS_TEAM_BILLING_ENABLED, IS_TEAM_BILLING_ENABLED_CLIENT } from "./constants";
|
|
|
|
describe("self-hosted billing capabilities", () => {
|
|
it("keeps Stripe and team billing disabled", () => {
|
|
expect(IS_STRIPE_ENABLED).toBe(false);
|
|
expect(IS_TEAM_BILLING_ENABLED).toBe(false);
|
|
expect(IS_TEAM_BILLING_ENABLED_CLIENT).toBe(false);
|
|
});
|
|
});
|