forked from knaxus/problem-solving-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanagrams.test.js
88 lines (79 loc) · 2.18 KB
/
anagrams.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const { checkAnagrams, checkAnagramUsingHelpers } = require('.');
describe('Anagrams', () => {
describe('Using cutom methods and character map', () => {
it('Should return TRUE for `rail safety` & `fairy tales`', () => {
expect(
checkAnagrams({
firstString: 'rail safety',
secondString: 'fairy tales',
}),
).toBe(true);
});
it('Should return TRUE for `FAIRY tales` & `rail SAFETY`', () => {
expect(
checkAnagrams({
firstString: 'FAIRY tales',
secondString: 'rail SAFETY',
}),
).toBe(true);
});
it('Should return FALSE for `Hello World` & `Bye`', () => {
expect(
checkAnagrams({
firstString: 'Hello World',
secondString: 'Bye',
}),
).toBe(false);
});
it('Should ignore special characters', () => {
expect(
checkAnagrams({
firstString: 'hello world!!',
secondString: 'hello - world',
}),
).toBe(true);
});
});
describe('Using in built methods and sorting', () => {
it('Should return TRUE for `rail safety` & `fairy tales`', () => {
expect(
checkAnagramUsingHelpers({
firstString: 'rail safety',
secondString: 'fairy tales',
}),
).toBe(true);
});
it('Should return TRUE for `FAIRY tales` & `rail SAFETY`', () => {
expect(
checkAnagramUsingHelpers({
firstString: 'FAIRY tales',
secondString: 'rail SAFETY',
}),
).toBe(true);
});
it('Should return FALSE for `Hello World` & `Bye`', () => {
expect(
checkAnagramUsingHelpers({
firstString: 'Hello World',
secondString: 'Bye',
}),
).toBe(false);
});
it('Should ignore special characters', () => {
expect(
checkAnagramUsingHelpers({
firstString: 'hello world!!',
secondString: 'hello - world',
}),
).toBe(true);
});
it('Should return FALSE for `Hello` & `Hallo`', () => {
expect(
checkAnagrams({
firstString: 'Hello',
secondString: 'Hallo',
}),
).toBe(false);
});
});
});