6 lines
105 B
JavaScript
6 lines
105 B
JavaScript
|
describe( 'Sample test', () => {
|
||
|
it( 'should pass', () => {
|
||
|
expect( true ).not.toBeNull();
|
||
|
} );
|
||
|
} );
|