Skip to content

Commit

Permalink
Merge pull request #4 from 12deg/fix/remove-billing-word
Browse files Browse the repository at this point in the history
fix: remove references to billing
  • Loading branch information
rameshlohala authored Aug 21, 2024
2 parents 41a4bfa + 0797b4b commit 3f86fe4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion generators/fastify-plugin/templates/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# @<%= scope %>/<%= name %>

A [Fastify](https://github.com/fastify/fastify) plugin that provides an easy integration of billing.
A [Fastify](https://github.com/fastify/fastify) plugin that provides an easy integration of <%= baseName %>.

## Installation

Expand Down
6 changes: 3 additions & 3 deletions generators/fastify-plugin/templates/__test__/plugin.test.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import Fastify from "fastify";
import { describe, it, expect } from "vitest";

import billingPlugin from "../src/index";
import plugin from "../src/index";

describe("Billing plugin", () => {
describe("plugin", () => {
it("should be exported as default and register without issues", async () => {
const fastify = Fastify();

await expect(fastify.register(billingPlugin)).resolves.not.toThrow();
await expect(fastify.register(plugin)).resolves.not.toThrow();
});
});

0 comments on commit 3f86fe4

Please sign in to comment.