This repository has been archived by the owner on Jan 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: e2e integration with puppeteer (#192)
* build: add e2e testing scripts * build: add e2e testing scripts * chore: fix script * chore: fix script * chore: ignore e2e normal test * chore: fix node_latest_browser * chore: move lint to prepare * chore: fix lint * chore: add local theme * fix: e2e tests
- Loading branch information
1 parent
0c4fb7d
commit d1b3e6e
Showing
19 changed files
with
1,329 additions
and
143 deletions.
There are no files selected for viewing
This file contains 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 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 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 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,11 @@ | ||
{ | ||
"rules": { | ||
"@typescript-eslint/no-var-requires": 0, | ||
"@typescript-eslint/explicit-function-return-type": 0, | ||
"@typescript-eslint/no-explicit-any": 0, | ||
"@typescript-eslint/explicit-member-accessibility": 0, | ||
"no-console": 0, | ||
"new-cap": 0, | ||
"max-len": 0 | ||
} | ||
} |
This file contains 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,31 @@ | ||
web: | ||
enable: true | ||
title: verdaccio-server-protected-e2e | ||
|
||
store: | ||
memory: | ||
limit: 10 | ||
|
||
auth: | ||
auth-memory: | ||
users: | ||
test: | ||
name: test | ||
password: test | ||
|
||
logs: | ||
- { type: stdout, format: pretty, level: warn } | ||
|
||
packages: | ||
'protected-*': | ||
access: $authenticated | ||
publish: $authenticated | ||
|
||
theme: | ||
../plugins/theme: | ||
prop: dummy | ||
|
||
listen: 0.0.0.0:55552 | ||
|
||
# expose internal methods | ||
_debug: true |
This file contains 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,34 @@ | ||
web: | ||
enable: true | ||
title: verdaccio-server-e2e | ||
|
||
store: | ||
memory: | ||
limit: 10 | ||
|
||
auth: | ||
auth-memory: | ||
users: | ||
test: | ||
name: test | ||
password: test | ||
|
||
logs: | ||
- { type: stdout, format: pretty, level: warn } | ||
|
||
packages: | ||
'@*/*': | ||
access: $all | ||
publish: $all | ||
'**': | ||
access: $all | ||
publish: $authenticated | ||
|
||
theme: | ||
../plugins/theme: | ||
prop: dummy | ||
|
||
listen: 0.0.0.0:55558 | ||
|
||
# expose internal methods | ||
_debug: true |
Oops, something went wrong.