1
0
Fork 0

wip(core): Migrated to named exports only

This commit is contained in:
Joost De Cock 2022-08-28 02:14:39 +02:00
parent 4b12a7330c
commit c09ae4aa69
23 changed files with 592 additions and 557 deletions

View file

@ -1,9 +1,9 @@
import chai from "chai"
import freesewing from "./dist/index.mjs"
import { Pattern } from "./dist/index.mjs"
const expect = chai.expect
const pattern = new freesewing.Pattern();
const pattern = new Pattern();
const store = pattern.store;
describe('Store', () => {