Skip to content

Commit

Permalink
fixing paths
Browse files Browse the repository at this point in the history
  • Loading branch information
signorecello committed Feb 29, 2024
1 parent 38974f4 commit 8646cd2
Show file tree
Hide file tree
Showing 6 changed files with 82 additions and 79 deletions.
1 change: 1 addition & 0 deletions boxes/boxes/react/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ src/contracts/log
/playwright-report/
/blob-report/
/playwright/.cache/
codegenCache.json
5 changes: 3 additions & 2 deletions boxes/boxes/react/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ import { defineConfig, devices } from '@playwright/test';

export default defineConfig({
testDir: './tests',
testMatch: '**.spec.ts',
fullyParallel: true,
retries: process.env.CI ? 3 : 1,
retries: process.env.CI ? 3 : 0,
workers: process.env.CI ? 1 : 3,
reporter: 'list',
use: {
Expand All @@ -13,7 +14,7 @@ export default defineConfig({
video: 'on-first-retry',
},
expect: {
timeout: 30000,
timeout: 90000,
},
projects: [
{
Expand Down
4 changes: 2 additions & 2 deletions boxes/boxes/react/src/contracts/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ compiler_version = ">=0.18.0"
type = "contract"

[dependencies]
aztec = { path = "../../../../noir-projects/aztec-nr/aztec" }
value_note = { path = "../../../../noir-projects/aztec-nr/value-note" }
aztec = { path = "../../../../../noir-projects/aztec-nr/aztec" }
value_note = { path = "../../../../../noir-projects/aztec-nr/value-note" }
1 change: 1 addition & 0 deletions boxes/boxes/vanilla/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ src/contracts/target
/playwright-report/
/blob-report/
/playwright/.cache/
codegenCache.json
4 changes: 2 additions & 2 deletions boxes/boxes/vanilla/src/contracts/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ compiler_version = ">=0.18.0"
type = "contract"

[dependencies]
aztec = { path = "../../../../noir-projects/aztec-nr/aztec" }
value_note = { path = "../../../../noir-projects/aztec-nr/value-note" }
aztec = { path = "../../../../../noir-projects/aztec-nr/aztec" }
value_note = { path = "../../../../../noir-projects/aztec-nr/value-note" }
146 changes: 73 additions & 73 deletions boxes/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -71,78 +71,6 @@ __metadata:
languageName: node
linkType: soft

"@aztec/box-react@workspace:react":
version: 0.0.0-use.local
resolution: "@aztec/box-react@workspace:react"
dependencies:
"@aztec/accounts": "npm:latest"
"@aztec/aztec.js": "npm:latest"
"@types/jest": "npm:^29.5.0"
"@types/node": "npm:^20.11.21"
"@types/react": "npm:^18.2.15"
"@types/react-dom": "npm:^18.2.7"
"@typescript-eslint/eslint-plugin": "npm:^6.0.0"
"@typescript-eslint/parser": "npm:^6.0.0"
autoprefixer: "npm:^10.4.15"
classnames: "npm:^2.3.2"
copy-webpack-plugin: "npm:^11.0.0"
css-loader: "npm:^6.8.1"
eslint: "npm:^8.21.0"
eslint-config-prettier: "npm:^9.0.0"
eslint-import-resolver-typescript: "npm:^3.5.5"
eslint-plugin-import: "npm:^2.27.5"
eslint-plugin-prettier: "npm:^5.0.1"
eslint-plugin-react-hooks: "npm:^4.6.0"
eslint-plugin-react-refresh: "npm:^0.4.3"
formik: "npm:^2.4.3"
html-webpack-plugin: "npm:^5.6.0"
jest: "npm:^29.6.4"
node-sass: "npm:^9.0.0"
postcss: "npm:^8.4.29"
postcss-loader: "npm:^7.3.3"
prettier: "npm:^3.1.1"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
react-toastify: "npm:^10.0.4"
resolve-typescript-plugin: "npm:^2.0.1"
sass-loader: "npm:^13.3.2"
serve: "npm:^14.2.1"
stream-browserify: "npm:^3.0.0"
style-loader: "npm:^3.3.3"
ts-jest: "npm:^29.1.0"
ts-loader: "npm:^9.4.4"
ts-node: "npm:^10.9.1"
tty-browserify: "npm:^0.0.1"
typescript: "npm:^5.0.4"
util: "npm:^0.12.5"
webpack: "npm:^5.88.2"
webpack-cli: "npm:^5.1.4"
webpack-dev-server: "npm:^4.15.1"
yup: "npm:^1.2.0"
languageName: unknown
linkType: soft

"@aztec/box-vanilla@workspace:vanilla-js":
version: 0.0.0-use.local
resolution: "@aztec/box-vanilla@workspace:vanilla-js"
dependencies:
"@aztec/accounts": "npm:latest"
"@aztec/aztec.js": "npm:latest"
"@playwright/test": "npm:^1.41.2"
"@types/node": "npm:^20.11.17"
copy-webpack-plugin: "npm:^11.0.0"
html-webpack-plugin: "npm:^5.6.0"
stream-browserify: "npm:^3.0.0"
ts-loader: "npm:^9.5.1"
tty-browserify: "npm:^0.0.1"
typescript: "npm:^5.0.4"
util: "npm:^0.12.5"
webpack: "npm:^5.90.1"
webpack-cli: "npm:^5.1.4"
webpack-dev-server: "npm:^4.15.1"
languageName: unknown
linkType: soft

"@aztec/circuit-types@portal:../yarn-project/circuit-types::locator=create-aztec-app%40workspace%3A.":
version: 0.0.0-use.local
resolution: "@aztec/circuit-types@portal:../yarn-project/circuit-types::locator=create-aztec-app%40workspace%3A."
Expand Down Expand Up @@ -234,6 +162,57 @@ __metadata:
languageName: node
linkType: soft

"@aztec/react@workspace:boxes/react":
version: 0.0.0-use.local
resolution: "@aztec/react@workspace:boxes/react"
dependencies:
"@aztec/accounts": "npm:latest"
"@aztec/aztec.js": "npm:latest"
"@types/jest": "npm:^29.5.0"
"@types/node": "npm:^20.11.21"
"@types/react": "npm:^18.2.15"
"@types/react-dom": "npm:^18.2.7"
"@typescript-eslint/eslint-plugin": "npm:^6.0.0"
"@typescript-eslint/parser": "npm:^6.0.0"
autoprefixer: "npm:^10.4.15"
classnames: "npm:^2.3.2"
copy-webpack-plugin: "npm:^11.0.0"
css-loader: "npm:^6.8.1"
eslint: "npm:^8.21.0"
eslint-config-prettier: "npm:^9.0.0"
eslint-import-resolver-typescript: "npm:^3.5.5"
eslint-plugin-import: "npm:^2.27.5"
eslint-plugin-prettier: "npm:^5.0.1"
eslint-plugin-react-hooks: "npm:^4.6.0"
eslint-plugin-react-refresh: "npm:^0.4.3"
formik: "npm:^2.4.3"
html-webpack-plugin: "npm:^5.6.0"
jest: "npm:^29.6.4"
node-sass: "npm:^9.0.0"
postcss: "npm:^8.4.29"
postcss-loader: "npm:^7.3.3"
prettier: "npm:^3.1.1"
react: "npm:^18.2.0"
react-dom: "npm:^18.2.0"
react-toastify: "npm:^10.0.4"
resolve-typescript-plugin: "npm:^2.0.1"
sass-loader: "npm:^13.3.2"
serve: "npm:^14.2.1"
stream-browserify: "npm:^3.0.0"
style-loader: "npm:^3.3.3"
ts-jest: "npm:^29.1.0"
ts-loader: "npm:^9.4.4"
ts-node: "npm:^10.9.1"
tty-browserify: "npm:^0.0.1"
typescript: "npm:^5.0.4"
util: "npm:^0.12.5"
webpack: "npm:^5.88.2"
webpack-cli: "npm:^5.1.4"
webpack-dev-server: "npm:^4.15.1"
yup: "npm:^1.2.0"
languageName: unknown
linkType: soft

"@aztec/types@portal:../yarn-project/types::locator=create-aztec-app%40workspace%3A.":
version: 0.0.0-use.local
resolution: "@aztec/types@portal:../yarn-project/types::locator=create-aztec-app%40workspace%3A."
Expand All @@ -243,6 +222,27 @@ __metadata:
languageName: node
linkType: soft

"@aztec/vanilla@workspace:boxes/vanilla":
version: 0.0.0-use.local
resolution: "@aztec/vanilla@workspace:boxes/vanilla"
dependencies:
"@aztec/accounts": "npm:latest"
"@aztec/aztec.js": "npm:latest"
"@playwright/test": "npm:^1.41.2"
"@types/node": "npm:^20.11.17"
copy-webpack-plugin: "npm:^11.0.0"
html-webpack-plugin: "npm:^5.6.0"
stream-browserify: "npm:^3.0.0"
ts-loader: "npm:^9.5.1"
tty-browserify: "npm:^0.0.1"
typescript: "npm:^5.0.4"
util: "npm:^0.12.5"
webpack: "npm:^5.90.1"
webpack-cli: "npm:^5.1.4"
webpack-dev-server: "npm:^4.15.1"
languageName: unknown
linkType: soft

"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
Expand Down Expand Up @@ -3577,7 +3577,7 @@ __metadata:
node-pty: "npm:^1.0.0"
tiged: "npm:^2.12.6"
bin:
create-aztec-app: bin.js
create-aztec-app: "VERSION=${VERSION:+} bin.js"
languageName: unknown
linkType: soft

Expand Down

0 comments on commit 8646cd2

Please sign in to comment.