new `test(), xtest(), ftest()` alias for more natuarl testing

Description

new test(), xtest(), ftest() alias for more natuarl testing

 

test( "Can have a separate beforeEach for this suite", function(){ expect( request.calc ).toBeComponent(); } ); xtest( "can add incorrectly and fail (Skipped)", function(){ var r = calc.add( 2, 2 ); expect( r ).toBe( 5 ); } ); test( "cannot divide by zero", function(){ expect( function(){ request.calc.divide( 4, 0 ); } ).toThrow( regex = "zero" ); } );

Activity

Fixed
Pinned fields
Click on the next to a field label to start pinning.

Details

Assignee

Reporter

Fix versions

Priority

Sentry

Created September 7, 2024 at 10:53 AM
Updated September 7, 2024 at 10:54 AM
Resolved September 7, 2024 at 10:54 AM