1 parent 2f185fe commit a38bb46Copy full SHA for a38bb46
1 file changed
src/auth/store.test.ts
@@ -153,9 +153,9 @@ describe("createAuthStore", () => {
153
: [],
154
);
155
expect(failures).toEqual([]);
156
- expect((await store.listProfiles(home)).map((profile) => profile.name)).toEqual(
157
- [...names].sort(),
158
- );
+ expect(
+ (await store.listProfiles(home)).map((profile) => profile.name),
+ ).toEqual([...names].sort());
159
} finally {
160
await rm(home, { recursive: true, force: true });
161
}
0 commit comments