Skip to content

Commit

Permalink
fix: test 1 no name argument needed
Browse files Browse the repository at this point in the history
  • Loading branch information
matiaslopezd committed Dec 3, 2021
1 parent f2b52e0 commit 1171be3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test1.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('Test 1', function () {
it('Expect fullname', async () => {
const name = 'John Doe';
setTimeout(() => server.events.name(name), 3000);
const result = await Test1(server, name);
const result = await Test1(server);
expect(result).to.be.equal(name);
}).timeout(3500);

Expand Down

0 comments on commit 1171be3

Please sign in to comment.