Print cell output

pull/37/head
Jonathan Frederic 12 years ago committed by Jonathan Frederic
parent 12760ddbe5
commit 7f430db3c8

@ -15,6 +15,7 @@ casper.notebook_test(function () {
'print("Success")\n');
this.execute_cell_then(container_index, function(index){
print(this.get_output_cell(index).text);
this.test.assert(this.get_output_cell(index).text == 'Success\n',
'Create container cell executed with correct output.');

@ -18,7 +18,7 @@ casper.notebook_test(function () {
'multicontainer.selected_index = 0\n' +
'print("Success")\n');
this.execute_cell_then(multicontainer1_index, function(index){
print(this.get_output_cell(index).text);
this.test.assert(this.get_output_cell(index).text == 'Success\n',
'Create multicontainer cell executed with correct output. (1)');

Loading…
Cancel
Save