1
0
Fork 0

chore(core): Change init to be private (__init)

This commit is contained in:
Joost De Cock 2022-09-20 15:24:10 +02:00
parent 4a29e25d50
commit 22680fbddc
5 changed files with 73 additions and 73 deletions

View file

@ -104,7 +104,7 @@ describe('Pattern', () => {
}
const design = new Design()
const pattern = new design({ only: ['test']})
pattern.init()
pattern.__init()
expect(pattern.__isPartHidden('test')).to.equal(false)
})