Files
klz-cables.com/.pnpm-store/v10/files/ef/1e6d3d81cea1d4570f8813f16539b546a0fce21b92b2951331b5b6cf84750a311883f39518820cdd8b0fe45cb50846ae832b867efe18b22b87e51a7b88b4a1
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

13 lines
245 B
Plaintext

'use strict'
const { test } = require('node:test')
const noop = require('./noop')
test('is a function', t => {
t.assert.strictEqual(typeof noop, 'function')
})
test('does nothing', t => {
t.assert.strictEqual(noop('stuff'), undefined)
})