diff --git a/IPython/html/tests/casperjs/test_cases/check_interrupt.js b/IPython/html/tests/casperjs/test_cases/check_interrupt.js
new file mode 100644
index 000000000..2bfc96c7a
--- /dev/null
+++ b/IPython/html/tests/casperjs/test_cases/check_interrupt.js
@@ -0,0 +1,28 @@
+//
+// Test kernel interrupt
+//
+casper.notebook_test(function () {
+ this.evaluate(function () {
+ var cell = IPython.notebook.get_cell(0);
+ cell.set_text('import time\nfor x in range(3):\n time.sleep(1)');
+ cell.execute();
+ });
+
+ this.thenClick('li#int_kernel');
+
+ this.waitFor(function () {
+ return this.evaluate(function get_output() {
+ var cell = IPython.notebook.get_cell(0);
+ return cell.output_area.outputs.length != 0;
+ })
+ });
+
+ this.then(function () {
+ var result = this.evaluate(function () {
+ var cell = IPython.notebook.get_cell(0);
+ var output = cell.output_area.outputs[0].ename;
+ return output;
+ })
+ this.test.assertEquals(result, 'KeyboardInterrupt', 'keyboard interrupt')
+ });
+});
diff --git a/IPython/html/tests/casperjs/test_cases/execute_code_cell.js b/IPython/html/tests/casperjs/test_cases/execute_code_cell.js
index 284a5e0bb..08cfa723f 100644
--- a/IPython/html/tests/casperjs/test_cases/execute_code_cell.js
+++ b/IPython/html/tests/casperjs/test_cases/execute_code_cell.js
@@ -8,17 +8,11 @@ casper.notebook_test(function () {
cell.execute();
});
-
this.waitFor(function () {
return this.evaluate(function get_output() {
var cell = IPython.notebook.get_cell(0);
return cell.output_area.outputs.length != 0;
})
- }, null, function on_timeout() {
- this.echo( this.evaluate( function() {
- IPython.notebook.save_notebook();
- return IPython.notebook.notebook_name;
- }) + ".ipynb is the name of the notebook which failed");
});
this.then(function () {