Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/grumpy-horses-cover.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'css-modules-kit-vscode': patch
---

chore: change categories
5 changes: 5 additions & 0 deletions .changeset/sharp-peaches-mate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'css-modules-kit-vscode': patch
---

chore: remove unused settings
6 changes: 2 additions & 4 deletions packages/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,10 @@
"typescript"
],
"categories": [
"Other"
"Programming Languages"
],
"activationEvents": [
"onLanguage:css",
"onLanguage:less",
"onLanguage:scss"
"onLanguage:css"
],
"contributes": {
"typescriptServerPlugins": [
Expand Down
3 changes: 3 additions & 0 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import { defineConfig } from 'vitest/config';

export default defineConfig({
test: {
// On GitHub Actions, the Windows runner is slow and tests may fail with the default timeout.
// Therefore, we set the timeout to 10 seconds.
testTimeout: 10_000,
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The log is here.

 FAIL   e2e  packages/ts-plugin/e2e-test/named-exports.test.ts > supports code fixes > supports adding missing CSS rules
   Start at  06:02:39
Error: Test timed out in 5000ms.
   Duration  37.60s (transform 1.18s, setup 0ms, collect 52.59s, tests 31.05s, environment 11ms, prepare 7.68s)
If this is a long-running test, pass a timeout value as the last argument or configure it globally with "testTimeout".

 ❯ packages/ts-plugin/e2e-test/named-exports.test.ts:485:3

    483|     });
Error: Error: Test timed out in 5000ms.
If this is a long-running test, pass a timeout value as the last argument or configure it globally with "testTimeout".
 ❯ packages/ts-plugin/e2e-test/named-exports.test.ts:485:3


    484|   });
    485|   test('supports adding missing CSS rules', async () => {
       |   ^
    486|     const iff = await createIFF({
    487|       'a.tsx': dedent`

projects: [
{
test: {
Expand Down