skip pilot tests by default
to make them work, change: test.describe.skip to test.describe
This commit is contained in:
parent
f9b0e141a6
commit
b61858f559
|
@ -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();
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
Reference in New Issue