Skip to content

Commit

Permalink
✨ feat(sak/js): Add default main and test file.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Mar 8, 2021
1 parent f53648e commit 2804101
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions data/js/src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
const answer = 42;
export default answer;
5 changes: 5 additions & 0 deletions data/js/test/src/api.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import test from 'ava';

test('API', (t) => {{
t.fail();
}});

0 comments on commit 2804101

Please sign in to comment.