Skip to content

Instantly share code, notes, and snippets.

@mortenson
Created May 18, 2016 17:49
Show Gist options
  • Save mortenson/33809985b838571ddd199b40d84ab2b2 to your computer and use it in GitHub Desktop.
Save mortenson/33809985b838571ddd199b40d84ab2b2 to your computer and use it in GitHub Desktop.
Debugging Drupal 8 Javascript tests
<?php
class DebugTest extends YourBrokenTest {
/**
* Overrides a broken test method and saves HTML at the point of failure.
*/
public function testName() {
try {
parent::testName();
}
catch (\Exception $e) {
file_put_contents('/Users/me/debug.html', $this->getSession()->getDriver()->getHtml('/html/body'));
throw $e;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment