Remove debugging stuff

This commit is contained in:
Matthew Phillips 2021-12-09 08:56:44 -08:00
parent f6e24d1a97
commit 19e2b5c56c
4 changed files with 1 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 457 B

View file

@ -118,7 +118,5 @@ const githubEditUrl = CONFIG.GITHUB_EDIT_URL && (CONFIG.GITHUB_EDIT_URL + curren
<RightSidebar content={content} githubEditUrl={githubEditUrl} />
</aside>
</main>
<script type="module" src={Astro.resolve('./script.js')} hoist></script>
<img src={Astro.resolve('../images/twitter.png')} />
</body>
</html>

View file

@ -1 +0,0 @@
console.log("HERE I AM");

View file

@ -18,7 +18,7 @@ describe('Astro basics', () => {
});
describe('build', () => {
it.only('Can load page', async () => {
it('Can load page', async () => {
const html = await fixture.readFile(`/index.html`);
const $ = cheerio.load(html);