Skip to content

Commit

Permalink
Removed chai depenency (#4535)
Browse files Browse the repository at this point in the history
* refactored JSONResponse to not use chai

* removed chai dependencies

* removed soft expect helper

* removed dep on chai in JSONResponse

* updated graphql server

* Delete .github/workflows/expectHelper.yml

* Delete .github/workflows/softExpectHelper.yml

* Update package.json

* removed helper tests

* fix: remove mock server helper (#4536)

* ˛fix: remove mock server helper

* ˛fix: remove mock server helper

* fix: remov pactum lib

* removed mock server test

* changed the way expect helper is loaded

* loading expect helper form package

* loading expect helper form package

* updated expect version

* updated dockerfile to use latest playwright, removed npm i --force

* improved loading esm/cjs style modules

* improved loading esm/cjs style modules

* improved loading esm/cjs style modules

* improved loading esm/cjs style modules

* changed docker file

* updated expect helper

* fixed loading cjs helper

* fix async loading of helper methods

* fixed failed tests

* fixed worker test

* fixed container issues

* resolved dependencies

* added proxies to resolve circular dependencies

* added proxies to resolve circular dependencies

* fixed printing metasteps

* fixed tests

* fixed tests

* reverted change to ;

* reverted change to ;

* reverted change to ;

* fixed runner tests

---------

Co-authored-by: DavertMik <[email protected]>
Co-authored-by: kobenguyent <[email protected]>
  • Loading branch information
3 people authored Dec 31, 2024
1 parent 6d500c6 commit 6be8fae
Show file tree
Hide file tree
Showing 90 changed files with 13,001 additions and 15,335 deletions.
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

0 comments on commit 6be8fae

Please sign in to comment.