diff --git a/lib/util/ignore.spec.ts b/lib/util/ignore.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c9b483aeca2cb294b3851eeabcb98799c6474ebc
--- /dev/null
+++ b/lib/util/ignore.spec.ts
@@ -0,0 +1,33 @@
+import { logger } from '../logger';
+import { isSkipComment } from './ignore';
+
+jest.mock('../logger', () => ({
+  logger: {
+    debug: jest.fn(),
+  },
+}));
+
+describe('util/ignore', () => {
+  it('returns true for "renovate:ignore" comments', () => {
+    expect(isSkipComment('renovate:ignore')).toBe(true);
+  });
+
+  it('returns false for comments not starting with "renovate:" or "pyup:"', () => {
+    expect(isSkipComment('other:ignore')).toBe(false);
+  });
+
+  it('returns false for "renovate:" comments without "ignore"', () => {
+    expect(isSkipComment('renovate:update')).toBe(false);
+  });
+
+  it('logs unknown command for "renovate:" comments without "ignore"', () => {
+    isSkipComment('renovate:update');
+    expect(logger.debug).toHaveBeenCalledWith(
+      'Unknown comment command: update',
+    );
+  });
+
+  it('returns false when comment is undefined', () => {
+    expect(isSkipComment()).toBe(false);
+  });
+});