Skip to content

Commit 68d4467

Browse files
committed
fix: test execute works
1 parent d78c12e commit 68d4467

File tree

9 files changed

+597
-760
lines changed

9 files changed

+597
-760
lines changed

.serena/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/cache

.serena/project.yml

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# language of the project (csharp, python, rust, java, typescript, go, cpp, or ruby)
2+
# * For C, use cpp
3+
# * For JavaScript, use typescript
4+
# Special requirements:
5+
# * csharp: Requires the presence of a .sln file in the project folder.
6+
language: typescript
7+
8+
# whether to use the project's gitignore file to ignore files
9+
# Added on 2025-04-07
10+
ignore_all_files_in_gitignore: true
11+
# list of additional paths to ignore
12+
# same syntax as gitignore, so you can use * and **
13+
# Was previously called `ignored_dirs`, please update your config if you are using that.
14+
# Added (renamed) on 2025-04-07
15+
ignored_paths: []
16+
17+
# whether the project is in read-only mode
18+
# If set to true, all editing tools will be disabled and attempts to use them will result in an error
19+
# Added on 2025-04-18
20+
read_only: false
21+
22+
23+
# list of tool names to exclude. We recommend not excluding any tools, see the readme for more details.
24+
# Below is the complete list of tools for convenience.
25+
# To make sure you have the latest list of tools, and to view their descriptions,
26+
# execute `uv run scripts/print_tool_overview.py`.
27+
#
28+
# * `activate_project`: Activates a project by name.
29+
# * `check_onboarding_performed`: Checks whether project onboarding was already performed.
30+
# * `create_text_file`: Creates/overwrites a file in the project directory.
31+
# * `delete_lines`: Deletes a range of lines within a file.
32+
# * `delete_memory`: Deletes a memory from Serena's project-specific memory store.
33+
# * `execute_shell_command`: Executes a shell command.
34+
# * `find_referencing_code_snippets`: Finds code snippets in which the symbol at the given location is referenced.
35+
# * `find_referencing_symbols`: Finds symbols that reference the symbol at the given location (optionally filtered by type).
36+
# * `find_symbol`: Performs a global (or local) search for symbols with/containing a given name/substring (optionally filtered by type).
37+
# * `get_current_config`: Prints the current configuration of the agent, including the active and available projects, tools, contexts, and modes.
38+
# * `get_symbols_overview`: Gets an overview of the top-level symbols defined in a given file.
39+
# * `initial_instructions`: Gets the initial instructions for the current project.
40+
# Should only be used in settings where the system prompt cannot be set,
41+
# e.g. in clients you have no control over, like Claude Desktop.
42+
# * `insert_after_symbol`: Inserts content after the end of the definition of a given symbol.
43+
# * `insert_at_line`: Inserts content at a given line in a file.
44+
# * `insert_before_symbol`: Inserts content before the beginning of the definition of a given symbol.
45+
# * `list_dir`: Lists files and directories in the given directory (optionally with recursion).
46+
# * `list_memories`: Lists memories in Serena's project-specific memory store.
47+
# * `onboarding`: Performs onboarding (identifying the project structure and essential tasks, e.g. for testing or building).
48+
# * `prepare_for_new_conversation`: Provides instructions for preparing for a new conversation (in order to continue with the necessary context).
49+
# * `read_file`: Reads a file within the project directory.
50+
# * `read_memory`: Reads the memory with the given name from Serena's project-specific memory store.
51+
# * `remove_project`: Removes a project from the Serena configuration.
52+
# * `replace_lines`: Replaces a range of lines within a file with new content.
53+
# * `replace_symbol_body`: Replaces the full definition of a symbol.
54+
# * `restart_language_server`: Restarts the language server, may be necessary when edits not through Serena happen.
55+
# * `search_for_pattern`: Performs a search for a pattern in the project.
56+
# * `summarize_changes`: Provides instructions for summarizing the changes made to the codebase.
57+
# * `switch_modes`: Activates modes by providing a list of their names
58+
# * `think_about_collected_information`: Thinking tool for pondering the completeness of collected information.
59+
# * `think_about_task_adherence`: Thinking tool for determining whether the agent is still on track with the current task.
60+
# * `think_about_whether_you_are_done`: Thinking tool for determining whether the task is truly completed.
61+
# * `write_memory`: Writes a named memory (for future reference) to Serena's project-specific memory store.
62+
excluded_tools: []
63+
64+
# initial prompt for the project. It will always be given to the LLM upon activating the project
65+
# (contrary to the memories, which are loaded on demand).
66+
initial_prompt: ""
67+
68+
project_name: "yps-crispy-carnival"

.storybook/vitest.setup.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,3 @@ import * as projectAnnotations from "./preview";
44
// This is an important step to apply the right configuration when testing your stories.
55
// More info at: https://storybook.js.org/docs/api/portable-stories/portable-stories-vitest#setprojectannotations
66
setProjectAnnotations([projectAnnotations]);
7-
8-
// Clerkのwarningをオフにする
9-
const warn = console.warn;
10-
console.warn = (...args) => {
11-
const NODE_ENV = process.env.NODE_ENV;
12-
const clerkStartMsg = "Clerk: Clerk has been loaded with development keys.";
13-
if (NODE_ENV === "development" && typeof args[0] === "string" && args[0].startsWith(clerkStartMsg)) {
14-
return;
15-
}
16-
warn.apply(console, args);
17-
};

package.json

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -22,50 +22,50 @@
2222
},
2323
"dependencies": {
2424
"@chakra-ui/react": "3.26.0",
25-
"@clerk/clerk-react": "^5.46.1",
25+
"@clerk/clerk-react": "5.46.1",
2626
"@emotion/react": "11.14.0",
27-
"@hookform/resolvers": "^5.0.1",
28-
"@tanstack/react-router": "1.130.2",
29-
"@tanstack/router-plugin": "1.121.2",
30-
"convex": "1.26.1",
31-
"jotai": "2.12.2",
27+
"@hookform/resolvers": "5.2.1",
28+
"@tanstack/react-router": "1.131.36",
29+
"@tanstack/router-plugin": "1.131.36",
30+
"convex": "1.26.2",
31+
"jotai": "2.14.0",
3232
"next-themes": "0.4.6",
33-
"react": "19.1.0",
34-
"react-dom": "19.1.0",
35-
"react-hook-form": "7.56.3",
36-
"react-icons": "^5.5.0",
33+
"react": "19.1.1",
34+
"react-dom": "19.1.1",
35+
"react-hook-form": "7.62.0",
36+
"react-icons": "5.5.0",
3737
"unzipper": "0.12.3",
3838
"zod": "4.1.5"
3939
},
4040
"devDependencies": {
41-
"@biomejs/biome": "2.2.2",
42-
"@clerk/testing": "^1.12.0",
43-
"@playwright/test": "^1.51.1",
44-
"@storybook/addon-docs": "9.1.3",
45-
"@storybook/addon-vitest": "9.1.3",
46-
"@storybook/react-vite": "^9.1.5",
47-
"@tanstack/react-devtools": "0.2.2",
48-
"@tanstack/react-router-devtools": "1.131.5",
49-
"@testing-library/dom": "10.4.0",
50-
"@testing-library/react": "16.2.0",
51-
"@types/node": "^20",
52-
"@types/react": "19.0.8",
53-
"@types/react-dom": "19.0.3",
54-
"@types/unzipper": "^0.10.11",
55-
"@vitejs/plugin-react": "4.3.4",
56-
"@vitest/browser": "^3.1.1",
57-
"@vitest/coverage-v8": "^3.1.1",
58-
"chromatic": "^13.1.3",
59-
"dotenv": "^17.0.0",
60-
"jsdom": "26.0.0",
61-
"playwright": "^1.51.1",
62-
"scaffdog": "^4.1.0",
63-
"storybook": "9.1.3",
64-
"tsx": "^4.19.4",
65-
"typescript": "5.7.2",
66-
"vite": "6.3.5",
41+
"@biomejs/biome": "2.2.3",
42+
"@clerk/testing": "1.12.4",
43+
"@playwright/test": "1.55.0",
44+
"@storybook/addon-docs": "9.1.5",
45+
"@storybook/addon-vitest": "9.1.5",
46+
"@storybook/react-vite": "9.1.5",
47+
"@tanstack/react-devtools": "0.6.6",
48+
"@tanstack/react-router-devtools": "1.131.36",
49+
"@testing-library/dom": "10.4.1",
50+
"@testing-library/react": "16.3.0",
51+
"@types/node": "24.3.1",
52+
"@types/react": "19.1.12",
53+
"@types/react-dom": "19.1.9",
54+
"@types/unzipper": "0.10.11",
55+
"@vitejs/plugin-react": "5.0.2",
56+
"@vitest/browser": "3.2.4",
57+
"@vitest/coverage-v8": "3.2.4",
58+
"chromatic": "13.1.4",
59+
"dotenv": "17.2.2",
60+
"jsdom": "26.1.0",
61+
"playwright": "1.55.0",
62+
"scaffdog": "4.1.0",
63+
"storybook": "9.1.5",
64+
"tsx": "4.20.5",
65+
"typescript": "5.9.2",
66+
"vite": "7.1.5",
6767
"vite-tsconfig-paths": "5.1.4",
68-
"vitest": "3.1.1",
69-
"web-vitals": "4.2.4"
68+
"vitest": "3.2.4",
69+
"web-vitals": "5.1.0"
7070
}
7171
}

0 commit comments

Comments
 (0)