Skip to content
Snippets Groups Projects

add additional tests to exercise the ASG schema

Merged Dan Allen requested to merge mojavelinux/asciidoc-tck:expand-tests into main
13 files
+ 215
2
Compare changes
  • Side-by-side
  • Inline
Files
13
@@ -7,9 +7,9 @@ describe('runner()', () => {
@@ -7,9 +7,9 @@ describe('runner()', () => {
it('should fail when using an non existing adapter', async () => {
it('should fail when using an non existing adapter', async () => {
const noop = function () {}
const noop = function () {}
const result = await runner('non-existing-adapter', { reporter: noop })
const result = await runner('non-existing-adapter', { reporter: noop })
expect(result.failures).to.eq(6)
expect(result.failures).to.eq(12)
expect(result.stats.failures).to.eq(result.failures)
expect(result.stats.failures).to.eq(result.failures)
expect(result.stats.suites).to.eq(10)
expect(result.stats.suites).to.eq(13)
expect(result.stats.tests).to.eq(result.failures)
expect(result.stats.tests).to.eq(result.failures)
})
})
})
})
Loading