Skip to content

Commit

Permalink
chore: remove repetitive words (#999)
Browse files Browse the repository at this point in the history
  • Loading branch information
yudrywet committed Apr 14, 2024
1 parent 21aee5b commit 39780e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration/node.test.js
@@ -1,7 +1,7 @@
// eslint-disable-next-line import/no-unresolved
import format from '../../dist/test.cjs';

test('Should run a a test app in a node environment', async () => {
test('Should run a test app in a node environment', async () => {
const data = 'contract CheckPackage {}';

expect(await format(data)).toEqual('contract CheckPackage {}\n');
Expand Down
2 changes: 1 addition & 1 deletion 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 data = 'contract CheckPackage {}';
const entry = new URL('./sandbox-test-app.cjs', import.meta.url);

Expand Down

0 comments on commit 39780e4

Please sign in to comment.