Skip to content
Snippets Groups Projects
Commit 34484867 authored by Lewis Liu's avatar Lewis Liu
Browse files

Fixed modal id implementation, added alternate reporter for e2e tests

parent 53dbfa13
Branches
Tags
No related merge requests found
......@@ -15,7 +15,7 @@ export default class ModalContent extends Component {
render() {
return (
<div className={this.props.className}>
<div id={this.props.id} className={this.props.className}>
<div className="Modal-header Form-header flex align-center">
<h2 className="flex-full">{this.props.title}</h2>
<a className="text-grey-3 p1" onClick={this.props.closeFn}>
......
import path from "path";
// FIXME: there are probably better places to put this
import specReporter from "jasmine-spec-reporter";
jasmine.getEnv().addReporter(new specReporter);
import { isReady } from "../support/start-server";
import { setup, cleanup } from "../support/setup";
import { By, until } from "selenium-webdriver";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment