08 pending - ranhs/soda-test GitHub Wiki

You may mark the test-step method as pending, by using the pending decorator as well as the it decorator.

import { describe, it, TR, pending } from 'soda-test'

@describe('nested test')
class nested {
    @it('this is form the nested file')
    @pending()
    dummy(): TR {...}
}

In the execution the step will display as pending and will not run. Use this feature to put placeholders for test-steps, or to avoid running test-steps that are not completed and ready.

  nested test
    - this is form the nested file


  1 pending

⚠️ **GitHub.com Fallback** ⚠️