diff --git a/src/utils/detectSpam.test.ts b/src/utils/detectSpam.test.ts index 7c2ed91..089b7c1 100644 --- a/src/utils/detectSpam.test.ts +++ b/src/utils/detectSpam.test.ts @@ -20,12 +20,6 @@ describe('isSpam function', () => { expect(result).toBe(false); }); - it('should not classify a German message with a URL as spam', () => { - const spamMessage = "Schauen Sie sich diese Website für tolle Angebote an https://www.spamsite.com"; - const result = isSpam(spamMessage); - expect(result).toBe(false); - }); - it("should classify one word message as spam", () => { const spamMessage = 'yolo'; const result = isSpam(spamMessage);