10 lines
321 B
TypeScript
10 lines
321 B
TypeScript
import { PLAN_LIMITS } from "../src/stripe/stripe.service";
|
|
|
|
describe("PLAN_LIMITS", () => {
|
|
it("blocks free exports and treats paid export plans as unlimited", () => {
|
|
expect(PLAN_LIMITS.free.exports).toBe(0);
|
|
expect(PLAN_LIMITS.pro.exports).toBe(-1);
|
|
expect(PLAN_LIMITS.elite.exports).toBe(-1);
|
|
});
|
|
});
|