kopia lustrzana https://github.com/badgen/badgen
27 wiersze
906 B
JavaScript
27 wiersze
906 B
JavaScript
const tap = require('tap')
|
|
const badgen = require('..')
|
|
|
|
tap.test('generate badge with { subject, status }', t => {
|
|
const svg = badgen({ subject: 'npm', status: 'v1.0.0' })
|
|
t.ok(typeof svg === 'string', 'successfully generated')
|
|
t.end()
|
|
})
|
|
|
|
tap.test('generate badge with { subject, status, color }', t => {
|
|
const svg = badgen({ subject: 'npm', status: 'v1.0.0', color: 'ADF' })
|
|
t.ok(typeof svg === 'string', 'successfully generated')
|
|
t.end()
|
|
})
|
|
|
|
tap.test('generate flat badge with { subject, status }', t => {
|
|
const svg = badgen({ subject: 'npm', status: 'v1.0.0' }, { style: 'flat' })
|
|
t.ok(typeof svg === 'string', 'successfully generated')
|
|
t.end()
|
|
})
|
|
|
|
tap.test('generate flat badge with { subject, status, color }', t => {
|
|
const svg = badgen({ subject: 'npm', status: 'v1.0.0', color: 'ADF' }, { style: 'flat' })
|
|
t.ok(typeof svg === 'string', 'successfully generated')
|
|
t.end()
|
|
})
|