Skip to content

Commit

Permalink
ignore ajson files and delete multi directory after integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Joseph Petro committed Dec 20, 2024
1 parent 7d7e0ed commit c028a4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion smart-sources/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
package-lock.json
package-lock.json
*.ajson
2 changes: 2 additions & 0 deletions smart-sources/test/markdown_source.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ test.after(async t => {
await new Promise(resolve => setTimeout(resolve, 1000));
// delete test/test-content/variations directory
fs.rmdirSync('test/test-content/variations', { recursive: true });
// delete test/test-content/test-env/multi directory
fs.rmdirSync('test/test-content/test-env/multi', { recursive: true });
});

test.serial('frontmatter_note.md: import and verify blocks', async t => {
Expand Down

0 comments on commit c028a4c

Please sign in to comment.