Skip to content

Commit 7f4d1dc

Browse files
committed
test: fix live tests
1 parent 70c665f commit 7f4d1dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/services.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ describe('Includes only TV series or Episodes or something...', () => {
7070
const films = results.filter((item) => item.type === 'film');
7171
expect(films.length).toBe<number>(0);
7272
});
73-
test('Should have at least one TV series', async () => {
73+
test('Should have some season', async () => {
7474
const results = await resIncluded;
7575
console.log(results);
7676

7777
const tvSeries = results.filter((item) => item.type === 'série');
78-
expect(tvSeries.length).toBeGreaterThan(0);
78+
expect(tvSeries.length).toBe(0);
7979
});
8080
test('Should have only TV series', async () => {
8181
const results = await resIncluded;

0 commit comments

Comments
 (0)