-
Notifications
You must be signed in to change notification settings - Fork 7
/
2-strings.test.js
71 lines (50 loc) · 2.08 KB
/
2-strings.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Substitua RESPOSTA pela resposta correta
describe('string', function() {
it('retorna o tamanho de uma string', function() {
const str = 'teste';
//expect(RESPOSTA).toBe(5); // IMPLEMENTE
expect(str.length).toBe(5); // IMPLEMENTE
});
it('retorna o segundo char de uma string', function() {
const str = 'abcde';
//expect(RESPOSTA).toBe('b'); // IMPLEMENTE
expect(str[1]).toBe('b'); // IMPLEMENTE
});
it('retorna o os 5 primeiros chars de uma string', function() {
const str = 'abcdefghi';
//expect(RESPOSTA).toBe('abcde'); // IMPLEMENTE
expect(str.slice(0,5)).toBe('abcde'); // IMPLEMENTE
});
it('retorna a concatenação de duas strings', function() {
const str_one = 'Hello';
const str_two = ' World!';
//expect(RESPOSTA).toBe('Hello World!'); // IMPLEMENTE
expect(str_one + str_two).toBe('Hello World!'); // IMPLEMENTE
});
it('retorna a interpolação de duas strings', function() {
const str_one = 'Hello';
const str_two = 'World';
//expect(RESPOSTA).toBe('Hello World!'); // IMPLEMENTE
expect(`${str_one} `+`${str_two}!`).toBe('Hello World!'); // IMPLEMENTE
});
it('replace uma parte da string', function() {
const str = 'Hello, World!';
//expect(RESPOSTA).toBe('Hello, Student!'); // IMPLEMENTE
expect(str.replace('World!', 'Student!')).toBe('Hello, Student!'); // IMPLEMENTE
});
it('split uma string', function() {
const str = 'Isso é uma string';
//expect(RESPOSTA).toBe(['Isso', 'é', 'uma', 'string']); // IMPLEMENTE
expect(str.split(" ", 4)).toEqual(['Isso', 'é', 'uma', 'string']); // IMPLEMENTE // DUVIDA...
});
it('lower case uma string', function() {
const str = 'ISSO É UMA STRING';
//expect(RESPOSTA).toBe('isso é uma string'); // IMPLEMENTE
expect(str.toLowerCase()).toBe('isso é uma string'); // IMPLEMENTE
});
it('upper case uma string', function() {
const str = 'isso é uma string';
//expect(RESPOSTA).toBe('ISSO É UMA STRING'); // IMPLEMENTE
expect(str.toUpperCase()).toBe('ISSO É UMA STRING'); // IMPLEMENTE
});
});