diff --git a/designs/legend/config/index.js b/designs/legend/config/index.js index b4b045f9ce1..b7c39491820 100644 --- a/designs/legend/config/index.js +++ b/designs/legend/config/index.js @@ -3,7 +3,7 @@ import pkg from '../package.json' assert { type: 'json' } const { version } = pkg export default { - version: pkg.version, + version, name: 'legend', design: 'Joost De Cock', code: 'Joost De Cock', diff --git a/packages/core/tests/svg.test.mjs b/packages/core/tests/svg.test.mjs index 5baa5cc23a0..d652764e74d 100644 --- a/packages/core/tests/svg.test.mjs +++ b/packages/core/tests/svg.test.mjs @@ -7,7 +7,6 @@ import render from "./fixtures/render.mjs" chai.use(chaiString) const expect = chai.expect const { version } = pkg -const round = freesewing.utils.round it("Svg constructor should initialize object", () => { let pattern = new freesewing.Pattern(); diff --git a/tests/patterns/drafting.mjs b/tests/patterns/drafting.mjs index ad06dbf2235..360b1eff54b 100644 --- a/tests/patterns/drafting.mjs +++ b/tests/patterns/drafting.mjs @@ -1,5 +1,5 @@ import { nonHumanMeasurements } from './non-human-measurements.mjs' -import { measurements, withBreasts, withoutBreasts } from '@freesewing/models' +import { withBreasts, withoutBreasts } from '@freesewing/models' import chai from 'chai' const expect = chai.expect diff --git a/tests/patterns/sampling.mjs b/tests/patterns/sampling.mjs index ce77e64a487..daa43c92e45 100644 --- a/tests/patterns/sampling.mjs +++ b/tests/patterns/sampling.mjs @@ -1,5 +1,5 @@ import { nonHumanMeasurements } from './non-human-measurements.mjs' -import { measurements, withBreasts, withoutBreasts } from '@freesewing/models' +import { withBreasts, withoutBreasts } from '@freesewing/models' import chai from 'chai' const expect = chai.expect