Skip to content

Commit 13c66f4

Browse files
committed
feat/ generate exercise
1 parent 8209109 commit 13c66f4

File tree

5 files changed

+45
-0
lines changed

5 files changed

+45
-0
lines changed

19_pascal/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Exercise 17 - pascal
2+
3+
Description of the exercise goes here.

19_pascal/pascal.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const pascal = function() {
2+
3+
};
4+
5+
// Do not edit below this line
6+
module.exports = pascal;

19_pascal/pascal.spec.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
const pascal = require('./pascal');
2+
3+
describe('pascal', () => {
4+
test('First test description', () => {
5+
// Replace this comment with any other necessary code, and update the expect line as necessary
6+
7+
expect(pascal()).toBe('');
8+
});
9+
10+
test.skip('Second test description', () => {
11+
// Replace this comment with any other necessary code, and update the expect line as necessary
12+
13+
expect(pascal()).toBe('');
14+
});
15+
});
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const pascal = function() {
2+
// Replace this comment with the solution code
3+
};
4+
5+
// Do not edit below this line
6+
module.exports = pascal;
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
const pascal = require('./pascal-solution');
2+
3+
describe('pascal', () => {
4+
test('First test description', () => {
5+
// Replace this comment with any other necessary code, and update the expect line as necessary
6+
7+
expect(pascal()).toBe('');
8+
});
9+
10+
test('Second test description', () => {
11+
// Replace this comment with any other necessary code, and update the expect line as necessary
12+
13+
expect(pascal()).toBe('');
14+
});
15+
});

0 commit comments

Comments
 (0)