File tree Expand file tree Collapse file tree
fixtures/assert-expansion Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11( true && ! ( ( ( ) => true ) ( ) ) && console . assert ( ( ( ) => true ) ( ) , 'This is an assertion' ) ) ;
2- ( true && ! ( false ) && console . assert ( false , 'This is an assertion 2' ) ) ;
2+ ( true && ! ( false ) && console . assert ( false , 'This is an assertion 2' ) ) ;
3+ ( true && ! ( false ) && console . assert ( false , 'renamed assertion' ) ) ;
Original file line number Diff line number Diff line change 11( true && ! ( ( ( ) => true ) ( ) ) && console . assert ( ( ( ) => true ) ( ) , 'This is an assertion' ) ) ;
2- ( true && ! ( false ) && console . assert ( false , 'This is an assertion 2' ) ) ;
2+ ( true && ! ( false ) && console . assert ( false , 'This is an assertion 2' ) ) ;
3+ ( true && ! ( false ) && console . assert ( false , 'renamed assertion' ) ) ;
Original file line number Diff line number Diff line change 11import { DEBUG } from '@ember/env-flags' ;
22import { assert } from '@ember/debug-tools' ;
3+ import { assert as debugAssert } from '@ember/debug-tools' ;
34
45assert ( ( ( ) => true ) ( ) , 'This is an assertion' ) ;
5- assert ( false , 'This is an assertion 2' ) ;
6+ assert ( false , 'This is an assertion 2' ) ;
7+ debugAssert ( false , 'renamed assertion' ) ;
You can’t perform that action at this time.
0 commit comments