mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-18 06:03:22 +09:00
Change name
Changed name of directory generator-exercise to exercise-generator so that students don't confuse it for an exercise
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
# Exercise XX - <%= title %>
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
<%= title %>
|
||||
@@ -0,0 +1,5 @@
|
||||
let <%= title %> = function() {
|
||||
|
||||
};
|
||||
|
||||
module.exports = <%= title %>;
|
||||
@@ -0,0 +1,8 @@
|
||||
let <%= title %> = require('./<%=title%>')
|
||||
|
||||
describe('<%=title%>', function() {
|
||||
test('EDITME', function() {
|
||||
expect(<%=title%>()).toEqual(' ');
|
||||
});
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user