Andrew McKenzie
Results
2
comments of
Andrew McKenzie
Using jQuery: ``` javascript it('toggles radio buttons', function(){ expect( $('input:checked').attr('id') ).toEqual( 'radio_1' ); // PASS $('#radio_2').trigger('click'); expect( $('#radio_2').is(':checked') ).toBeTruthy(); // PASS expect( $('input:checked').attr('id') ).toEqual( 'radio_2' ); // FAIL - returns...