Skip to content

Commit dfca479

Browse files
committed
feat/ add new exercise
1 parent 8209109 commit dfca479

File tree

5 files changed

+45
-0
lines changed

5 files changed

+45
-0
lines changed

14_contains/README.md

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

14_contains/contains.js

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

14_contains/contains.spec.js

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

0 commit comments

Comments
 (0)