1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-26 07:13:41 +01:00

Fixes formatting

This commit is contained in:
Amir Raminfar
2021-01-01 14:58:22 -08:00
parent da2401bb89
commit 246f06e1a5
2 changed files with 2 additions and 4 deletions

View File

@@ -124,9 +124,7 @@ describe("<LogEventSource />", () => {
describe("render html correctly", () => {
const RealDate = Date;
beforeAll(() => {
global.Date = class extends (
RealDate
) {
global.Date = class extends RealDate {
constructor(arg) {
if (arg) {
return new RealDate(arg);

View File

@@ -1,4 +1,4 @@
<template> </template>
<template></template>
<script>
import { mapActions, mapGetters, mapState } from "vuex";