1
0
Fork 0

fix: Shorten minimal length of design title

This commit is contained in:
joostdecock 2023-07-02 11:54:01 +02:00
parent 159d1906f5
commit 21293a0abf

View file

@ -21,7 +21,7 @@ export const testPatternI18n = (Pattern, i18n) => {
})
it(` - The design should have a translated description`, () => {
expect(typeof i18n.en.d).to.equal('string')
expect(i18n.en.t.length).to.be.above(12)
expect(i18n.en.t.length).to.be.above(8)
})
if (!isUtilityDesign(name)) {
it(` - The strings (s) object should exist`, () => {