We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21aee5b commit 39780e4Copy full SHA for 39780e4
2 files changed
tests/integration/node.test.js
@@ -1,7 +1,7 @@
1
// eslint-disable-next-line import/no-unresolved
2
import format from '../../dist/test.cjs';
3
4
-test('Should run a a test app in a node environment', async () => {
+test('Should run a test app in a node environment', async () => {
5
const data = 'contract CheckPackage {}';
6
7
expect(await format(data)).toEqual('contract CheckPackage {}\n');
tests/integration/sandbox.test.js
@@ -1,4 +1,4 @@
-test('Should run a a test app in a sandbox', async () => {
+test('Should run a test app in a sandbox', async () => {
const entry = new URL('./sandbox-test-app.cjs', import.meta.url);
0 commit comments