use of com.vaadin.client.SystemErrorHandler in project flow by vaadin.
the class GwtErrotHandlerTest method gwtSetUp.
@Override
protected void gwtSetUp() throws Exception {
super.gwtSetUp();
Reactive.reset();
registry = new Registry() {
{
set(ApplicationConfiguration.class, new ApplicationConfiguration());
set(SystemErrorHandler.class, new SystemErrorHandler(this));
}
};
}
Aggregations