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
26 lines
457 B
Plaintext
26 lines
457 B
Plaintext
'use strict'
|
|
|
|
const { Suite } = require('benchmark')
|
|
const { createWarning } = require('..')
|
|
|
|
const err1 = createWarning({
|
|
name: 'TestWarning',
|
|
code: 'TST_ERROR_CODE_1',
|
|
message: 'message'
|
|
})
|
|
const err2 = createWarning({
|
|
name: 'TestWarning',
|
|
code: 'TST_ERROR_CODE_2',
|
|
message: 'message'
|
|
})
|
|
|
|
new Suite()
|
|
.add('warn', function () {
|
|
err1()
|
|
err2()
|
|
})
|
|
.on('cycle', function (event) {
|
|
console.log(String(event.target))
|
|
})
|
|
.run()
|