skip pilot tests by default

to make them work, change:

  test.describe.skip to test.describe
This commit is contained in:
pedro 2024-04-04 11:49:05 +02:00
parent f9b0e141a6
commit b61858f559
1 changed files with 115 additions and 110 deletions

View File

@ -62,6 +62,8 @@ async function oidc_flow(page) {
} else if (/ereuse/.test(hostname)) { } else if (/ereuse/.test(hostname)) {
vcred_schema='Product and waste electronics operator claim' vcred_schema='Product and waste electronics operator claim'
vcred_file='/home/music/trustchain-oc1-orchestral-docker/IdHub/examples/excel_examples/e-operator-claim.xlsx' vcred_file='/home/music/trustchain-oc1-orchestral-docker/IdHub/examples/excel_examples/e-operator-claim.xlsx'
} else {
test.skip();
} }
await set_org_key(page); await set_org_key(page);
@ -114,6 +116,7 @@ async function oidc_flow(page) {
// TODO test que hace la presentación de la credencial al revés // TODO test que hace la presentación de la credencial al revés
test.describe.skip('test-pilots', () => {
test('sign_pdf', async ({ page }) => { test('sign_pdf', async ({ page }) => {
await login(page); await login(page);
@ -233,3 +236,5 @@ test('ereuse_pilot', async ({ page }) => {
await page.pause(); await page.pause();
}); });
});