From dae39d8b10e260604e1511551a9ad49d507bbc5d Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Fri, 8 Oct 2021 08:54:28 +0200 Subject: [PATCH] Remove 'only' from test suite --- src/runtime/javascript/tests/basic.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/javascript/tests/basic.test.ts b/src/runtime/javascript/tests/basic.test.ts index 3146146c3..f2303521e 100644 --- a/src/runtime/javascript/tests/basic.test.ts +++ b/src/runtime/javascript/tests/basic.test.ts @@ -209,7 +209,7 @@ describe('abstract syntax', () => { // ---------------------------------------------------------------------------- -describe.only('expressions', () => { +describe('expressions', () => { test('small integer', () => { const e1 = PGF.readExpr('123') const e2 = new PGF.ExprLit(123)