Skip to content

Commit

Permalink
remove only
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelrvg committed Oct 29, 2023
1 parent d813f33 commit 99a2f56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testes/potigol/avaliador-sintatico.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ describe('Avaliador sintático', () => {
expect(retornoAvaliadorSintatico.declaracoes).toHaveLength(1);
});

it.only('Sucesso - Operações encadeadas', () => {
it('Sucesso - Operações encadeadas', () => {
const retornoLexador = lexador.mapear(['escreva (2 * 8) - (5 / 4 ^ 7)'], -1);
const retornoAvaliadorSintatico = avaliadorSintatico.analisar(retornoLexador, -1);

expect(retornoAvaliadorSintatico).toBeTruthy();
expect(retornoAvaliadorSintatico.declaracoes).toHaveLength(1);
expect(retornoAvaliadorSintatico.declaracoes).toHaveLength(2);
});

it('Sucesso - Mod e Div', () => {
Expand Down

0 comments on commit 99a2f56

Please sign in to comment.