1
0
Fork 0

chore: Reconfigure packages

This commit is contained in:
Joost De Cock 2020-10-13 19:06:19 +02:00
parent d7c14d9055
commit 3d0291d6d1
51 changed files with 719 additions and 36 deletions

View file

@ -0,0 +1,39 @@
// This file is auto-generated.
// Changes you make will be overwritten.
const expect = require("chai").expect;
const models = require("@freesewing/models")
const patterns = require("@freesewing/pattern-info")
const Albert = require('../dist')
// Shared tests
const testPatternConfig = require('../../../tests/patterns/config')
const testPatternDrafting = require('../../../tests/patterns/drafting')
const testPatternSampling = require('../../../tests/patterns/sampling')
// Test config
testPatternConfig(
'albert',
new Albert(),
expect,
models,
patterns
)
// Test drafting
testPatternDrafting(
'albert',
Albert,
expect,
models,
patterns
)
// Test sampling
testPatternSampling(
'albert',
Albert,
expect,
models,
patterns
)