Code smells fixes

This commit is contained in:
Liviu Burcusel 2025-09-23 18:00:07 +02:00
parent 3fcb150636
commit 910302f27a
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
3 changed files with 15 additions and 15 deletions

View file

@ -63,7 +63,7 @@ describe("Vuetify Plugin Configuration", () => {
const expectedKeys = ["components", "directives", "theme"];
const actualKeys = Object.keys(callArgs);
expect(actualKeys.sort()).toEqual(expectedKeys.sort());
expect([...actualKeys].sort((a, b) => a.localeCompare(b))).toEqual([...expectedKeys].sort((a, b) => a.localeCompare(b)));
});
it("should export the vuetify instance", async () => {