[CLOSED DUPLICATE] PR #360 — superseded by #366 - #360
Closed
ZacLou wants to merge 1 commit into
Closed
Conversation
Adamantine-guild#105) Auto-generated by GrantFox Task Executor
webhook mapper.test.ts (#105)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #105
此 PR 由 GrantFox Task Executor 自动生成。
原始 issue: #105
说明:
Rename the malformed test file
webhook mapper.test.tsDifficulty: Intermediate
Type: Bug
Background:
apps/dashboard/test/webhook mapper.test.tscontains a literal space in its filename, sitting alongside the correctly namedwebhook-mapper.test.ts-style siblings such aswebhook.test.tsandwebhook-validation.test.ts.Problem: The stray space is inconsistent with every other test file in the repo, can break shell globbing/tooling on some CI or editor configurations, and looks like an accidental save-as.
Expected outcome: The file is renamed to
webhook-mapper.test.ts(or merged into an existing mapper test file if content overlaps), with no loss of test coverage.Suggested implementation:
git mv "apps/dashboard/test/webhook mapper.test.ts" apps/dashboard/test/webhook-mapper.test.tslib/activity/mapper.tsand imports resolve correctly.package.jsontest glob patterns don't special-case the old name.Auto-generated by GrantFox Task Executor