(opts)
| 8 | const Serializer = require('../lib/serializer') |
| 9 | |
| 10 | function build (opts) { |
| 11 | return fjs({ |
| 12 | title: 'default string', |
| 13 | type: 'object', |
| 14 | properties: { |
| 15 | firstName: { |
| 16 | type: 'string' |
| 17 | } |
| 18 | }, |
| 19 | required: ['firstName'] |
| 20 | }, opts) |
| 21 | } |
| 22 | |
| 23 | test('activate debug mode', t => { |
| 24 | t.plan(5) |
no outgoing calls
no test coverage detected
searching dependent graphs…