function todo
todo(...info: string[]): unknown

Stub test step. When reached, terminates without passing or failing, and adds a task to the test report.

Example:

import { testSuite, expect, todo } from '@hackbg/fadroma';
export default testSuite(import.meta,
  expect('Auto todo'),
  expect('Manual todo', todo()),
  expect('Manual todo with more info', todo('the more info')));

Parameters

...info: string[]

Return Type

unknown

Usage

import { todo } from ".";