File tree Expand file tree Collapse file tree 5 files changed +45
-0
lines changed Expand file tree Collapse file tree 5 files changed +45
-0
lines changed Original file line number Diff line number Diff line change 1+ # Exercise 17 - pascal
2+
3+ Description of the exercise goes here.
Original file line number Diff line number Diff line change 1+ const pascal = function ( ) {
2+
3+ } ;
4+
5+ // Do not edit below this line
6+ module . exports = pascal ;
Original file line number Diff line number Diff line change 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+ } ) ;
Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change 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+ } ) ;
You can’t perform that action at this time.
0 commit comments