Skip to content

Commit

Permalink
use it.todo now that Node20 test runner works
Browse files Browse the repository at this point in the history
  • Loading branch information
ericyd committed Jan 15, 2024
1 parent 423bebe commit 0c6b5a1
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions lib/components/path.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@ import { describe, it } from 'node:test'
// import { Path } from './path.js'

describe('Path', () => {
// it.todo doesn't seem to report correctly so just noting this is a TODO!
it('moveTo should add the correct path instruction', () => {})
it.todo('moveTo should add the correct path instruction')

it('lineTo should add the correct path instruction', () => {})
it.todo('lineTo should add the correct path instruction')

it('cubicBezier should add the correct path instruction', () => {})
it.todo('cubicBezier should add the correct path instruction')

it('smoothBezier should add the correct path instruction', () => {})
it.todo('smoothBezier should add the correct path instruction')

it('close should add the correct path instruction', () => {})
it.todo('close should add the correct path instruction')
})

0 comments on commit 0c6b5a1

Please sign in to comment.