Skip to content

Commit

Permalink
Remove teste de Ctrl+Z
Browse files Browse the repository at this point in the history
Teste funciona localmente com Safari, mas falha no github no webkit. Aparentemente, Ctrl+Z não é executado no github, segundo trace.
  • Loading branch information
juliomelo committed Mar 11, 2024
1 parent 7fe49ff commit c6db356
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tests/formatacaoDispositivos.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,13 +226,4 @@ test.describe('Formatação do editor de articulação', () => {
expect(await obterLexml()).toEqual('<Articulacao xmlns="http://www.lexml.gov.br/1.0"><Artigo id="art1"><Rotulo>Art. 1º –</Rotulo><Caput id="art1_cpt"><p>Artigo.</p></Caput><Paragrafo id="art1_par1u"><Rotulo>Parágrafo único –</Rotulo><p>Parágrafo:</p></Paragrafo></Artigo><Artigo id="art2"><Rotulo>Art. 2º –</Rotulo><Caput id="art2_cpt"><p>Artigo.</p></Caput></Artigo></Articulacao>');
});

test('"Desfazer" não pode violar formatação', async ({ page, escrever, obterLexml }) => {
await escrever('Teste.');
await page.keyboard.press('Home');
await page.keyboard.press('Enter');
await page.getByText('Continuação').click();
await page.keyboard.press('Control+Z');
expect(await obterLexml()).toEqual('<Articulacao xmlns="http://www.lexml.gov.br/1.0"><Artigo id="art1"><Rotulo>Art. 1º –</Rotulo><Caput id="art1_cpt"><p>Teste.</p></Caput></Artigo></Articulacao>');
});

});

0 comments on commit c6db356

Please sign in to comment.