diff options
-rw-r--r-- | packages/astro/test/astro-pages.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/test/astro-pages.test.js b/packages/astro/test/astro-pages.test.js index 708836a64..9d365adb7 100644 --- a/packages/astro/test/astro-pages.test.js +++ b/packages/astro/test/astro-pages.test.js @@ -1,6 +1,6 @@ import { expect } from 'chai'; import * as cheerio from 'cheerio'; -import { loadFixture, isWindows} from './test-utils.js'; +import { loadFixture, isWindows } from './test-utils.js'; describe('Pages', () => { let fixture; @@ -23,7 +23,7 @@ describe('Pages', () => { }); }); - if(isWindows) return; + if (isWindows) return; describe('Development', () => { let devServer; |