Skip to content

Commit 8790cac

Browse files
ascorbicastrobot-houston
authored andcommitted
[ci] format
1 parent 1d1b84a commit 8790cac

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

packages/astro/test/cli.test.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ describe('astro cli', () => {
128128
assert.equal(proc.stdout.includes(`v${viteVersion}`), true);
129129
assert.equal(proc.stdout.includes(`@astrojs/node (v${adapterVersion})`), true);
130130
assert.equal(proc.stdout.includes(`@astrojs/react (v${integrationVersion})`), true);
131-
}
131+
},
132132
);
133133

134134
it(
@@ -155,7 +155,7 @@ describe('astro cli', () => {
155155
assert.equal(proc.stdout.includes(`v${viteVersion}`), true);
156156
assert.equal(proc.stdout.includes(`@astrojs/node (v${adapterVersion})`), true);
157157
assert.equal(proc.stdout.includes(`@astrojs/react (v${integrationVersion})`), true);
158-
}
158+
},
159159
);
160160

161161
it(
@@ -217,7 +217,9 @@ describe('astro cli', () => {
217217
delete packageJSON.packageManager;
218218
packageJSON.dependencies.astro = 'workspace:*';
219219

220-
await fs.writeFile(packageJSONUrl, JSON.stringify(packageJSON, null, 2), { encoding: 'utf-8' });
220+
await fs.writeFile(packageJSONUrl, JSON.stringify(packageJSON, null, 2), {
221+
encoding: 'utf-8',
222+
});
221223
await fs.rm(yarnLockUrl, { force: true });
222224
await fs.rm(packDestinationURL, { force: true });
223225

@@ -226,7 +228,7 @@ describe('astro cli', () => {
226228
assert.equal(proc.stdout.includes(`v${viteVersion}`), true);
227229
assert.equal(proc.stdout.includes(`@astrojs/node (v${adapterVersion})`), true);
228230
assert.equal(proc.stdout.includes(`@astrojs/react (v${integrationVersion})`), true);
229-
}
231+
},
230232
);
231233

232234
it(

0 commit comments

Comments
 (0)