Skip to content

Commit 599570d

Browse files
committed
style: standardize formatting in Condensation.test.js
1 parent ee2c4b7 commit 599570d

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

Graphs/test/Condensation.test.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
1-
import { condensation } from "../Condensation.js";
1+
import { condensation } from '../Condensation.js'
22

3-
test("Test Case 1", () => {
3+
test('Test Case 1', () => {
44
const graph = [
55
[1, 2],
66
[2, 3],
77
[3, 1],
88
[2, 4],
99
[4, 5],
1010
[5, 6],
11-
[6, 4],
12-
];
13-
const { sccs } = condensation(graph);
11+
[6, 4]
12+
]
13+
const { sccs } = condensation(graph)
1414
expect(sccs).toStrictEqual([
1515
[1, 3, 2],
16-
[4, 6, 5],
17-
]);
18-
});
16+
[4, 6, 5]
17+
])
18+
})
1919

20-
test("Test Case 2", () => {
20+
test('Test Case 2', () => {
2121
const graph = [
2222
[1, 2],
2323
[2, 3],
2424
[3, 1],
2525
[2, 4],
26-
[4, 5],
27-
];
28-
const { sccs } = condensation(graph);
29-
expect(sccs).toStrictEqual([[1, 3, 2], [4], [5]]);
30-
});
26+
[4, 5]
27+
]
28+
const { sccs } = condensation(graph)
29+
expect(sccs).toStrictEqual([[1, 3, 2], [4], [5]])
30+
})

0 commit comments

Comments
 (0)