1
0
Fork 0

chore(sandy): Ported to v3

This commit is contained in:
joostdecock 2022-09-04 19:03:18 +02:00
parent d5ada5bbae
commit a56e20464d
8 changed files with 66 additions and 88 deletions

View file

@ -64,22 +64,24 @@ export const testPatternConfig = (Pattern) => {
// Config tests for non-utility patterns only
if (family !== 'utilities') {
it(` - 'design' should be set and be a string of reasonable length`, () => {
if (Array.isArray(meta.design)) {
for (const person of meta.design) {
expect(typeof person).to.equal('string')
expect(person.length > 2).to.be.true
expect(person.length < 80).to.be.true
}
} else {
expect(typeof meta.design).to.equal('string')
expect(meta.design.length > 2).to.be.true
expect(meta.design.length < 80).to.be.true
const people = Array.isArray(meta.design)
? meta.design
: [ meta.design ]
for (const person of people) {
expect(typeof person).to.equal('string')
expect(person.length > 2).to.be.true
expect(person.length < 80).to.be.true
}
})
it(` - 'code' should be set and be a string of reasonable length`, () => {
expect(typeof meta.code).to.equal('string')
expect(meta.code.length > 2).to.be.true
expect(meta.code.length < 80).to.be.true
const people = Array.isArray(meta.code)
? meta.design
: [ meta.design ]
for (const person of people) {
expect(typeof person).to.equal('string')
expect(person.length > 2).to.be.true
expect(person.length < 80).to.be.true
}
})
it(` - 'department' should be set and be a string of reasonable length`, () => {
expect(typeof meta.code).to.equal('string')