Skip to content

Commit 92c7abf

Browse files
committed
Fix unnecessary await
1 parent 24a00d4 commit 92c7abf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/managers/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ describe('ManagerTests', function () {
1818
appWebSocketServer.on('connection', function (connection) {
1919
console.log('Connection');
2020
const appClient = new AppClient(connection, async (teardown) => {
21-
await textAndGraphicManagerTests(appClient);
21+
textAndGraphicManagerTests(appClient);
2222
permissionManagerTests(appClient);
2323
softButtonManagerTests(appClient);
24-
await screenManagerTests(appClient);
24+
screenManagerTests(appClient);
2525
lifecycleManagerTests(appClient);
2626
fileManagerTests(appClient);
2727
taskTests(appClient);

0 commit comments

Comments
 (0)