@allurereport/web-allure2
Version:
The static files for Allure Classic Report
20 lines (16 loc) • 428 B
JavaScript
import { View } from "backbone.marionette";
import { className } from "@/decorators/index.js";
import template from "./ErrorSplashView.hbs";
import "./styles.scss";
("error-splash")
class ErrorSplashView extends View {
template = template;
serializeData() {
return {
cls: this.className,
code: this.options.code,
message: this.options.message,
};
}
}
export default ErrorSplashView;