Skip to content

Commit 2506379

Browse files
committed
✅ fix test
1 parent 91f62ce commit 2506379

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/create-configs/src/steps/lint-configuration.spec.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ describe('lint-configuration', () => {
3333
];
3434
expect(parsed.extends).toStrictEqual(dependencies);
3535
expect(output.dependencies.development.values()).toStrictEqual(
36-
new Set(dependencies).values(),
36+
new Set(dependencies.map((d) => `${d}@latest`)).values(),
3737
);
3838
});
3939

@@ -66,10 +66,10 @@ describe('lint-configuration', () => {
6666
]);
6767
expect(output.dependencies.development.values()).toStrictEqual(
6868
new Set([
69-
'@code-style/eslint-config',
70-
'@code-style/eslint-config-browser',
71-
'@code-style/eslint-config-typescript',
72-
'@code-style/eslint-config-jest',
69+
'@code-style/eslint-config@latest',
70+
'@code-style/eslint-config-browser@latest',
71+
'@code-style/eslint-config-typescript@latest',
72+
'@code-style/eslint-config-jest@latest',
7373
]).values(),
7474
);
7575
});

0 commit comments

Comments
 (0)