17 lines
518 B
JavaScript
17 lines
518 B
JavaScript
'use strict'
|
|
|
|
const { test, given } = require('sazerac')
|
|
const Bugzilla = require('./bugzilla.service')
|
|
|
|
describe('getDisplayStatus function', function() {
|
|
it('formats status correctly', async function() {
|
|
test(Bugzilla.getDisplayStatus, () => {
|
|
given({ status: 'RESOLVED', resolution: 'WORKSFORME' }).expect(
|
|
'works for me'
|
|
)
|
|
given({ status: 'RESOLVED', resolution: 'WONTFIX' }).expect("won't fix")
|
|
given({ status: 'ASSIGNED', resolution: '' }).expect('assigned')
|
|
})
|
|
})
|
|
})
|