Skip to content
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

Removed chai depenency #4535

Merged
merged 41 commits into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
eef33c5
refactored JSONResponse to not use chai
Oct 31, 2024
771232c
removed chai dependencies
Oct 31, 2024
a86706f
removed soft expect helper
Oct 31, 2024
a58b021
removed dep on chai in JSONResponse
Oct 31, 2024
89414aa
updated graphql server
Nov 1, 2024
4edba3e
Delete .github/workflows/expectHelper.yml
kobenguyent Nov 4, 2024
47722bd
Delete .github/workflows/softExpectHelper.yml
kobenguyent Nov 4, 2024
1a314d2
Update package.json
kobenguyent Nov 4, 2024
418514c
removed helper tests
Nov 4, 2024
518656c
fix: remove mock server helper (#4536)
kobenguyent Nov 4, 2024
fbe7a06
--no-verify
Nov 4, 2024
1ef110a
removed mock server test
Nov 4, 2024
8f12d16
changed the way expect helper is loaded
Nov 4, 2024
ccb3d7f
loading expect helper form package
Nov 5, 2024
126b2db
loading expect helper form package
Nov 5, 2024
a0d453f
updated expect version
Nov 5, 2024
8646b72
updated dockerfile to use latest playwright, removed npm i --force
Nov 5, 2024
c87a027
improved loading esm/cjs style modules
Nov 5, 2024
02b0f4b
improved loading esm/cjs style modules
Nov 5, 2024
51c3b3b
improved loading esm/cjs style modules
Nov 5, 2024
dbdd82a
improved loading esm/cjs style modules
Nov 5, 2024
de6b257
changed docker file
Nov 5, 2024
11bcd9e
updated expect helper
Nov 5, 2024
8c0ec87
fixed loading cjs helper
Nov 5, 2024
ac4da06
fix async loading of helper methods
Nov 5, 2024
7e4f493
Merge branch '3.x' into refactor/downgrade-chai-5
Nov 7, 2024
117aba6
removed chai dep, merged with 3.x
Dec 22, 2024
e4bbe2d
fixed failed tests
Dec 22, 2024
95f3825
fixed worker test
Dec 22, 2024
57f2ac0
fixed container issues
Dec 25, 2024
996ebdc
Merge branch '3.x' into refactor/downgrade-chai-5
DavertMik Dec 25, 2024
64d95ff
resolved dependencies
Dec 25, 2024
0a27b34
added proxies to resolve circular dependencies
Dec 27, 2024
1f54ace
added proxies to resolve circular dependencies
Dec 27, 2024
784904c
fixed printing metasteps
Dec 27, 2024
f6ca98c
fixed tests
Dec 27, 2024
31a0f1d
fixed tests
Dec 27, 2024
9a837dd
reverted change to ;
Dec 30, 2024
9eeb4e9
reverted change to ;
Dec 30, 2024
ce5bb28
reverted change to ;
Dec 30, 2024
59b5a74
fixed runner tests
Dec 31, 2024
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
20 changes: 10 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
version: 2
updates:
# github-actions
- package-ecosystem: "github-actions"
directory: "/"
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: "weekly"
target-branch: "3.x"
interval: 'weekly'
target-branch: '3.x'
# npm
- package-ecosystem: "npm"
directory: "/"
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: "weekly"
target-branch: "3.x"
interval: 'weekly'
target-branch: '3.x'
ignore:
- dependency-name: "escape-string-regexp"
versions: [">=5.0"]
- dependency-name: 'escape-string-regexp'
versions: ['>=5.0']
1 change: 0 additions & 1 deletion .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ env:

jobs:
build:

runs-on: ubuntu-latest

strategy:
Expand Down
34 changes: 0 additions & 34 deletions .github/workflows/expectHelper.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/softExpectHelper.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run prettier && npm run lint && npm run dtslint
prettier $(git diff --cached --name-only --diff-filter=ACMR | sed 's| |\\ |g') --write --ignore-unknown
git update-index --again
npx eslint $(git diff --cached --name-only --diff-filter=ACMR | sed 's| |\\ |g')
npm run dtslint
Loading
Loading