##// END OF EJS Templates
Merge pull request #7211 from minrk/warning-test...
Min RK -
r19533:caa31e36 merge
parent child Browse files
Show More
@@ -39,7 +39,8 b' casper.notebook_test(function () {'
39 39 this.wait_for_output(button_index, 1);
40 40
41 41 this.then(function () {
42 this.test.assertEquals(this.get_output_cell(button_index, 1).text, "WARNING: The widget API is still considered experimental and \n may change by the next major release of IPython.\n",
42 var warning_text = this.get_output_cell(button_index, 1).text;
43 this.test.assertNotEquals(warning_text.indexOf('Warning'), -1,
43 44 'Importing widgets show a warning');
44 45 this.test.assertEquals(this.get_output_cell(button_index, 2).data['text/plain'], "'Clicked'",
45 46 'Button click event fires.');
General Comments 0
You need to be logged in to leave comments. Login now