Skip to content

Commit

Permalink
Update src/components/BusinessHours/MucBusinessHours.test.ts
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
FabianWilms and coderabbitai[bot] authored Dec 2, 2024
1 parent 9f7a80c commit 6289f36
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/BusinessHours/MucBusinessHours.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ import { h } from "vue";
import BusinessHoursToggle from "./MucBusinessHours.vue"; // Pfad zur Komponente anpassen

describe("BusinessHoursToggle", () => {
let businessHours: Array<any>;
interface BusinessHour {
weekDay: string;
openingHours: Array<{ from: string; to: string }>;
}
let businessHours: Array<BusinessHour>;

beforeEach(() => {
businessHours = [
Expand Down

0 comments on commit 6289f36

Please sign in to comment.