1
0
Fork 0

chore(plugin-annotations): Fix banner tests after changes

This commit is contained in:
joostdecock 2023-09-08 09:05:44 +02:00
parent 5a99c1b5ef
commit 6a08a4f642
2 changed files with 43 additions and 30 deletions

View file

@ -22,12 +22,15 @@ describe('Banner Plugin Tests', () => {
},
plugins: [annotationsPlugin],
}
const design = new Design({ parts: [part] })
// Note that we're not loading core plugins but the local plugin
const design = new Design({ parts: [part] }, true)
const pattern = new design()
pattern.draft()
const c = pattern.parts[0].test.paths.example
// Note that this macro does not add text to the path, but clones
// the path and adds text to the clone which is then hidden
const c = pattern.parts[0].test.paths.__macro_banner_banner_banner
expect(c.attributes.get('data-text')).to.equal(
'             foo              foo              foo              foo              foo              foo              foo              foo              foo              foo             '
'foo              foo              foo              foo              foo              foo              foo              foo              foo              foo              foo'
)
expect(c.attributes.get('data-text-class').trim()).to.equal('center')
expect(c.attributes.get('data-text-dy')).to.equal('-1')
@ -52,11 +55,12 @@ describe('Banner Plugin Tests', () => {
},
plugins: [annotationsPlugin],
}
const design = new Design({ parts: [part] })
// Note that we're not loading core plugins but the local plugin
const design = new Design({ parts: [part] }, true)
const pattern = new design()
pattern.draft()
const c = pattern.parts[0].test.paths.example2
expect(c.attributes.get('data-text')).to.equal('   foo    foo   ')
const c = pattern.parts[0].test.paths.__macro_banner_banner_banner
expect(c.attributes.get('data-text')).to.equal('foo    foo    foo')
})
it('Number of repetitions should be configurable', () => {
@ -78,12 +82,13 @@ describe('Banner Plugin Tests', () => {
},
plugins: [annotationsPlugin],
}
const design = new Design({ parts: [part] })
// Note that we're not loading core plugins but the local plugin
const design = new Design({ parts: [part] }, true)
const pattern = new design()
pattern.draft()
const c = pattern.parts[0].test.paths.example3
const c = pattern.parts[0].test.paths.__macro_banner_banner_banner
expect(c.attributes.get('data-text')).to.equal(
'  foo   foo   foo   foo  '
'foo   foo   foo   foo   foo'
)
})
})