Skip to content

Commit

Permalink
Merge branch 'master' into fix/AG-40152
Browse files Browse the repository at this point in the history
  • Loading branch information
105th committed Feb 25, 2025
2 parents d0ca81a + caa2818 commit 6936674
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 179 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
.DS_Store
build/
.idea/
.vscode/
.vscode/*
!.vscode/extensions.json
.pnpm-store/
pnpm-debug.log
node_modules
Expand Down
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"vitest.explorer"
]
}
2 changes: 1 addition & 1 deletion bamboo-specs/auto-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ branch-overrides:
pnpm install ${bamboo.varsPnpm}
./bamboo-specs/scripts/timeout-wrapper.sh 300s pnpm test
./bamboo-specs/scripts/timeout-wrapper.sh 300s pnpm test:ci
final-tasks:
- test-parser:
type: junit
Expand Down
2 changes: 1 addition & 1 deletion bamboo-specs/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ Unit tests:
pnpm install ${bamboo.varsPnpm}
./bamboo-specs/scripts/timeout-wrapper.sh 300s pnpm test
./bamboo-specs/scripts/timeout-wrapper.sh 300s pnpm test:ci
final-tasks:
- test-parser:
type: junit
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "browser-extension",
"version": "5.1.55",
"version": "5.1.57",
"description": "AdGuard Extension",
"type": "module",
"scripts": {
Expand All @@ -10,9 +10,10 @@
"beta": "cross-env BUILD_ENV=beta tsx tools/bundle.ts",
"release": "cross-env BUILD_ENV=release tsx tools/bundle.ts",
"adguard-api": "cross-env BUILD_ENV=dev tsx tools/bundle.ts adguard-api",
"test:mv2": "cross-env MANIFEST_ENV=2 vitest run",
"test:mv3": "cross-env MANIFEST_ENV=3 vitest run",
"test": "tsx tools/run-tests.ts",
"test": "vitest run",
"test:mv2": "vitest run --project mv2",
"test:mv3": "vitest run --project mv3",
"test:ci": "pnpm run test:mv2 --reporter default --reporter junit --outputFile=./tests-reports/unit-tests-mv2.xml && pnpm run test:mv3 --reporter default --reporter junit --outputFile=./tests-reports/unit-tests-mv3.xml",
"test:integration": "rimraf tmp && mkdir -p tests-reports && tsx tools/browser-test/index.ts",
"locales": "tsx tools/locales.js",
"resources": "tsx tools/resources.ts",
Expand Down Expand Up @@ -73,7 +74,6 @@
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^9.5.2",
"fake-indexeddb": "^6.0.0",
"filesize": "^10.1.2",
"form-data": "^4.0.0",
Expand Down
100 changes: 0 additions & 100 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

61 changes: 0 additions & 61 deletions tools/run-tests.ts

This file was deleted.

2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "./tsconfig.base.json",
"include": [
"vitest.setup.ts",
"vitest.config.ts",
"vitest.workspace.ts",
"babel.config.js",
"postcss.config.js",
"tools/",
Expand Down
Loading

0 comments on commit 6936674

Please sign in to comment.