mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
block for tests
This commit is contained in:
parent
acba22040c
commit
b2d731a641
@ -6,30 +6,32 @@ const i18nMock = {
|
||||
|
||||
const { amount, GDD } = loadFilters(i18nMock)
|
||||
|
||||
describe('amount', () => {
|
||||
it('returns empty string when called with null', () => {
|
||||
expect(amount(null)).toBe('')
|
||||
describe('amount filters', () => {
|
||||
describe('amount', () => {
|
||||
it('returns empty string when called with null', () => {
|
||||
expect(amount(null)).toBe('')
|
||||
})
|
||||
|
||||
it('returns 0 when called with 0', () => {
|
||||
expect(amount(0)).toBe('0')
|
||||
})
|
||||
|
||||
it('returns a leading proper minus sign when called with negative value', () => {
|
||||
expect(amount(-1)).toBe('− 1')
|
||||
})
|
||||
})
|
||||
|
||||
it('returns 0 when called with 0', () => {
|
||||
expect(amount(0)).toBe('0')
|
||||
})
|
||||
describe('GDD', () => {
|
||||
it('returns empty string when called with null', () => {
|
||||
expect(GDD(null)).toBe('')
|
||||
})
|
||||
|
||||
it('returns a leading proper minus sign when called with negative value', () => {
|
||||
expect(amount(-1)).toBe('− 1')
|
||||
})
|
||||
})
|
||||
|
||||
describe('GDD', () => {
|
||||
it('returns empty string when called with null', () => {
|
||||
expect(GDD(null)).toBe('')
|
||||
})
|
||||
|
||||
it('returns "+ 0 GDD" when called with 0', () => {
|
||||
expect(GDD(0)).toBe('+ 0 GDD')
|
||||
})
|
||||
|
||||
it('returns a leading proper minus sign when called with negative value', () => {
|
||||
expect(GDD(-1)).toBe('− 1 GDD')
|
||||
it('returns "+ 0 GDD" when called with 0', () => {
|
||||
expect(GDD(0)).toBe('+ 0 GDD')
|
||||
})
|
||||
|
||||
it('returns a leading proper minus sign when called with negative value', () => {
|
||||
expect(GDD(-1)).toBe('− 1 GDD')
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user