1
0
Fork 0

remove old

This commit is contained in:
Wouter van Wageningen 2023-03-03 22:13:09 +00:00
parent 728704d15d
commit 7868e41710
54 changed files with 2 additions and 3333 deletions

View file

@ -1,16 +0,0 @@
import chai from 'chai'
import { Design } from '@freesewing/core'
import { plugin } from '../src/index.mjs'
const expect = chai.expect
describe('Logo Plugin Tests', () => {
it('Should import style and defs', () => {
const Pattern = new Design()
const pattern = new Pattern().use(plugin)
pattern.draft().render()
expect(pattern.svg.defs).to.contain(
'<g id="logo" transform="scale(1) translate(-23 -36)"><path class="logo"'
)
})
})