Skip to content

Commit 6289f36

Browse files
Update src/components/BusinessHours/MucBusinessHours.test.ts
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 9f7a80c commit 6289f36

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/components/BusinessHours/MucBusinessHours.test.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ import { h } from "vue";
55
import BusinessHoursToggle from "./MucBusinessHours.vue"; // Pfad zur Komponente anpassen
66

77
describe("BusinessHoursToggle", () => {
8-
let businessHours: Array<any>;
8+
interface BusinessHour {
9+
weekDay: string;
10+
openingHours: Array<{ from: string; to: string }>;
11+
}
12+
let businessHours: Array<BusinessHour>;
913

1014
beforeEach(() => {
1115
businessHours = [

0 commit comments

Comments
 (0)