Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wax
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
wax
Commits
ae2e51c8
Commit
ae2e51c8
authored
1 month ago
by
Bartek Wrona
Browse files
Options
Downloads
Patches
Plain Diff
Introduced a timeout to example playwright.config to wait for server and avoid random CI failures
parent
ee3b042f
Branches
Branches containing commit
No related tags found
1 merge request
!295
Updated 2 dependencies in TS example to avoid vulnerability reports specific to wax (even they are specific to example apps only)
Pipeline
#118697
passed
1 month ago
Stage: static_code_analysis
Stage: build
Stage: test
Stage: deploy
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/ts/signature-extension/__tests__/index.spec.ts
+1
-0
1 addition, 0 deletions
examples/ts/signature-extension/__tests__/index.spec.ts
examples/ts/signature-extension/playwright.config.ts
+4
-1
4 additions, 1 deletion
examples/ts/signature-extension/playwright.config.ts
with
5 additions
and
1 deletion
examples/ts/signature-extension/__tests__/index.spec.ts
+
1
−
0
View file @
ae2e51c8
...
...
@@ -94,6 +94,7 @@ test.describe('Signature extension tests', () => {
const
result
=
await
testPage
.
waitForSelector
(
'
#tx-result
'
);
const
tx
=
JSON
.
parse
(
await
result
.
textContent
()
as
string
);
console
.
log
(
`Received keyMatchText:
${
keyMatchText
}
`
);
//await page.pause();
expect
(
tx
.
signatures
).
toHaveLength
(
1
);
...
...
This diff is collapsed.
Click to expand it.
examples/ts/signature-extension/playwright.config.ts
+
4
−
1
View file @
ae2e51c8
...
...
@@ -28,6 +28,9 @@ export default defineConfig({
],
webServer
:
{
command
:
'
npm run test:manual
'
command
:
'
npm run test:manual
'
,
"
url
"
:
"
http://localhost:1234
"
,
"
timeout
"
:
120
*
1000
,
"
reuseExistingServer
"
:
false
}
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment