chore: Fixed dependencies for github workflows
This commit is contained in:
parent
508adb298e
commit
a2caaa7611
193 changed files with 1596 additions and 1217 deletions
|
@ -1,10 +1,10 @@
|
|||
// 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 expect = require("chai").expect;
|
||||
const models = require("@freesewing/models")
|
||||
const patterns = require("@freesewing/pattern-info")
|
||||
|
||||
const Legend = require('../dist')
|
||||
const Legend = require('../dist')
|
||||
|
||||
// Shared tests
|
||||
const testPatternConfig = require('../../../tests/patterns/config')
|
||||
|
@ -12,10 +12,28 @@ const testPatternDrafting = require('../../../tests/patterns/drafting')
|
|||
const testPatternSampling = require('../../../tests/patterns/sampling')
|
||||
|
||||
// Test config
|
||||
testPatternConfig('legend', new Legend(), expect, models, patterns)
|
||||
testPatternConfig(
|
||||
'legend',
|
||||
new Legend(),
|
||||
expect,
|
||||
models,
|
||||
patterns
|
||||
)
|
||||
|
||||
// Test drafting
|
||||
testPatternDrafting('legend', Legend, expect, models, patterns)
|
||||
testPatternDrafting(
|
||||
'legend',
|
||||
Legend,
|
||||
expect,
|
||||
models,
|
||||
patterns
|
||||
)
|
||||
|
||||
// Test sampling
|
||||
testPatternSampling('legend', Legend, expect, models, patterns)
|
||||
testPatternSampling(
|
||||
'legend',
|
||||
Legend,
|
||||
expect,
|
||||
models,
|
||||
patterns
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue