10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
import { removeNewlineAndPTag } from "../../src/utils/newSanitizer";
|
|
|
|
describe("newSanitizer", () => {
|
|
test("Should remove /\n and <p>/</p> elements", () => {
|
|
const input = "\n<p>This is a string</p>";
|
|
const expectedOutput = "This is a string";
|
|
expect(removeNewlineAndPTag(input)).toEqual(expectedOutput);
|
|
});
|
|
});
|