(name: string, spec: any)
| 13 | } |
| 14 | |
| 15 | function saveBaseline(name: string, spec: any) { |
| 16 | fs.writeFileSync( |
| 17 | path.join(__dirname, 'baseline', name), |
| 18 | YAML.stringify(spec, { lineWidth: 0, indent: 4, aliasDuplicateObjects: false }), |
| 19 | ); |
| 20 | } |
| 21 | |
| 22 | const schema = ` |
| 23 | type Address { |