-
Notifications
You must be signed in to change notification settings - Fork 49
Real E2E tests #2089
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
Open
gregberge
wants to merge
7
commits into
main
Choose a base branch
from
logged-test
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+251
−117
Open
Real E2E tests #2089
Changes from 4 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
f692557
test: E2E logged test
gregberge 0402d07
wip
gregberge e3aa263
Finalize tests
gregberge ed7146b
Remove Firefox
gregberge a9f6a80
Make parallel work
gregberge dfa22aa
Fix deps
gregberge 0c11b96
Fix comment
gregberge 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
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,9 +1,13 @@ | ||
| import Knex from "knex"; | ||
|
|
||
| import config from "@/config"; | ||
| import config, { type Config } from "@/config"; | ||
| import { getKnexConfig } from "@/config/database"; | ||
|
|
||
| import { transaction } from "./transaction"; | ||
|
|
||
| export const knex = Knex(getKnexConfig(config)); | ||
| function getKnexFromConfig(config: Config) { | ||
| return Knex(getKnexConfig(config)); | ||
| } | ||
|
|
||
| export const knex = getKnexFromConfig(config); | ||
| transaction.knex(knex); |
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
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
Empty file.
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
7 changes: 4 additions & 3 deletions
7
apps/backend/src/util/slug.test.ts → packages/util/src/slug.test.ts
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,17 @@ | ||
| import { describe, expect, it } from "vitest"; | ||
|
|
||
| import { slugify } from "./slug"; | ||
| import { SLUG_REGEX, slugify } from "./slug"; | ||
|
|
||
| describe("slugify", () => { | ||
| it('must slugify a string to match "^[-a-z0-9]+$" pattern', () => { | ||
| it("must slugify a string to match SLUG_REGEX pattern", () => { | ||
| expect(slugify("ControlPlane25")).toBe("control-plane25"); | ||
| expect(slugify("&é!'lazepjfazehç")).toBe("and-e-lazepjfazehc"); | ||
| expect(slugify("&é!'lazepjfazehç!")).toBe("and-e-lazepjfazehc"); | ||
| expect(slugify("%a?eç,sq")).toBe("a-ec-sq"); | ||
| expect(slugify("foo@239")).toBe("foo-239"); | ||
| }); | ||
|
|
||
| it("must give a generic slug when failing to generate one from the string", () => { | ||
| expect(slugify("淼淼自助店铺")).toMatch(/^[a-z-]+-\d+$/); | ||
| expect(slugify("淼淼自助店铺")).toMatch(SLUG_REGEX); | ||
| }); | ||
| }); |
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 |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| { | ||
| "cookies": [ | ||
| { | ||
| "name": "argos_jwt", | ||
| "value": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ2ZXJzaW9uIjoyLCJhY2NvdW50Ijp7ImlkIjoiMyIsIm5hbWUiOiJHcmVnIEJlcmfDqSIsInNsdWciOiJncmVnYmVyZ2UifSwiaWF0IjoxNzc1Mzc0NTMzLCJleHAiOjE3ODA1NTg1MzN9.uTA09_ZcO4EekwfAUGE-GbcFzShk1Cs18CXdtoQ34VM", | ||
| "domain": "localhost", | ||
| "path": "/", | ||
| "expires": -1, | ||
| "httpOnly": false, | ||
| "secure": false, | ||
| "sameSite": "Lax" | ||
| } | ||
| ], | ||
gregberge marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| "origins": [] | ||
| } | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.