Remove debugging stuff
This commit is contained in:
parent
f6e24d1a97
commit
19e2b5c56c
4 changed files with 1 additions and 4 deletions
Binary file not shown.
Before Width: | Height: | Size: 457 B |
|
@ -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>
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
console.log("HERE I AM");
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue