Skip to content

Commit 47cd9f9

Browse files
committed
Improve console output
1 parent ea996fe commit 47cd9f9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/tests.mjs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,11 @@ describe("Players", () => {
143143

144144
describe("Servers", () => {
145145
describe("getServers();", () => {
146-
it("Checking the method for errors", async () => {
147-
for (let page = 1; page < 30; page++) {
148-
await nameMc.getServers(page);
146+
describe("Checking the method for errors", () => {
147+
for (let page = 1; page <= 30; page++) {
148+
it(`Check ${page} page for errors`, async () => {
149+
await nameMc.getServers(page);
150+
});
149151
}
150152
});
151153
});

0 commit comments

Comments
 (0)