-
Notifications
You must be signed in to change notification settings - Fork 0
Test/be #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Test/be #23
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
770a37b
test: be
eugbyte 7b80fe2
test: be
eugbyte 0727731
chore: test controller
eugbyte 163b44d
fix: ci
eugbyte 4706a00
fix: ci
eugbyte bb5557c
chore: test booking
eugbyte 606b24a
fix: fmt
eugbyte 7493ce5
test: be
eugbyte File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,16 @@ | ||
| <Solution> | ||
| <Folder Name="/Solution Items/"> | ||
| <File Path=".editorconfig" /> | ||
| <File Path=".gitignore" /> | ||
| <File Path="Makefile" /> | ||
| </Folder> | ||
| <Folder Name="/src/"> | ||
| <Project Path="src\evently.client\evently.client.esproj" Type="{54A90642-561A-4BB1-A94E-469ADEE60C69}"> | ||
| <Configuration Solution="Release|Any CPU" Project="Debug|Any CPU" /> | ||
| </Project> | ||
| <Project Path="src\Evently.Server\Evently.Server.csproj" Type="Classic C#" /> | ||
| </Folder> | ||
| <Solution> | ||
| <Folder Name="/Solution Items/"> | ||
| <File Path=".editorconfig"/> | ||
| <File Path=".gitignore"/> | ||
| <File Path="Makefile"/> | ||
| </Folder> | ||
| <Folder Name="/src/"> | ||
| <Project Path="src\evently.client\evently.client.esproj"> | ||
| <Configuration Solution="Release|Any CPU" Project="Debug|Any CPU"/> | ||
| </Project> | ||
| <Project Path="src\Evently.Server\Evently.Server.csproj"/> | ||
| </Folder> | ||
| <Folder Name="/tests/"> | ||
| <Project Path="tests\Evently.Server.Test\Evently.Server.Test.csproj" Type="Classic C#"/> | ||
| </Folder> | ||
| </Solution> |
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,18 @@ | ||
| <Project Sdk="Microsoft.VisualStudio.JavaScript.Sdk/1.0.2125207"> | ||
| <Target Name="InstallWithPnpm" BeforeTargets="BeforeBuild"> | ||
| <Exec Command="pnpm install"/> | ||
| </Target> | ||
| <PropertyGroup> | ||
| <ShouldRunNpmInstall>false</ShouldRunNpmInstall> | ||
| <StartupCommand>pnpm run dev</StartupCommand> | ||
| <JavaScriptTestRoot>src\</JavaScriptTestRoot> | ||
| <JavaScriptTestFramework>Vitest</JavaScriptTestFramework> | ||
| <!-- Allows the build (or compile) script located on package.json to run on Build --> | ||
| <ShouldRunBuildScript>false</ShouldRunBuildScript> | ||
| <!-- Must include BuildCommand - weird bug with msft where if wwwroot folder contains exisiting files, npm run build will not automatically run if <BuildCommand /> is excluded. --> | ||
| <BuildCommand>pnpm run build</BuildCommand> | ||
| <PublishCommand>pnpm run build</PublishCommand> | ||
| <!-- Folder where production build objects will be placed --> | ||
| <BuildOutputFolder>$(MSBuildProjectDirectory)\dist</BuildOutputFolder> | ||
| </PropertyGroup> | ||
| <Target Name="InstallWithPnpm" BeforeTargets="BeforeBuild"> | ||
| <Exec Command="pnpm install"/> | ||
| </Target> | ||
| <PropertyGroup> | ||
| <ShouldRunNpmInstall>false</ShouldRunNpmInstall> | ||
| <StartupCommand>pnpm run dev</StartupCommand> | ||
| <JavaScriptTestRoot>src\</JavaScriptTestRoot> | ||
| <JavaScriptTestFramework>Vitest</JavaScriptTestFramework> | ||
| <!-- Allows the build (or compile) script located on package.json to run on Build --> | ||
| <ShouldRunBuildScript>false</ShouldRunBuildScript> | ||
| <!-- Must include BuildCommand - weird bug with msft where if wwwroot folder contains exisiting files, npm run build will not automatically run if <BuildCommand /> is excluded. --> | ||
| <BuildCommand>pnpm run build</BuildCommand> | ||
| <PublishCommand>pnpm run build</PublishCommand> | ||
| <!-- Folder where production build objects will be placed --> | ||
| <BuildOutputFolder>$(MSBuildProjectDirectory)\dist</BuildOutputFolder> | ||
| </PropertyGroup> | ||
| </Project> |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,16 +1,16 @@ | ||
| <!doctype html> | ||
| <html lang="en" data-theme="dark"> | ||
| <html data-theme="dark" lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
| <link href="/vite.svg" rel="icon" type="image/svg+xml" /> | ||
| <meta | ||
| name="viewport" | ||
| content="height=device-height, width=device-width, initial-scale=1.0, minimum-scale=1.0" | ||
| name="viewport" | ||
| /> | ||
| <title>Evently</title> | ||
| </head> | ||
| <body> | ||
| <div id="root"></div> | ||
| <script type="module" src="/src/main.tsx"></script> | ||
| <script src="/src/main.tsx" type="module"></script> | ||
| </body> | ||
| </html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The migration name 'ColCollation' is generic and doesn't clearly describe what the migration does. Consider using a more descriptive name that explains the specific changes being made.