summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--packages/astro/test/events.test.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/astro/test/events.test.js b/packages/astro/test/events.test.js
index a8eaafee6..b0732a15c 100644
--- a/packages/astro/test/events.test.js
+++ b/packages/astro/test/events.test.js
@@ -5,7 +5,6 @@ import * as events from '../dist/events/index.js';
describe('Events', () => {
describe('eventCliSession()', () => {
-
it('string literal "build.format" is included', () => {
const config = {
srcDir: 1,
@@ -22,7 +21,6 @@ describe('Events', () => {
expect(payload.config.build.format).to.equal('file');
});
-
it('string literal "markdown.syntaxHighlight" is included', () => {
const config = {
markdown: {
@@ -91,7 +89,7 @@ describe('Events', () => {
it('only adapter name is included', () => {
const config = {
- adapter: {name: 'ADAPTER_NAME'},
+ adapter: { name: 'ADAPTER_NAME' },
};
const [{ payload }] = events.eventCliSession({ cliCommand: 'dev' }, config);
expect(payload.config.adapter).to.equal('ADAPTER_NAME');