@@ -71,7 +71,7 @@ makeConnectionTests('Initalize Tests', function () {
71
71
} , false ) ;
72
72
73
73
makeConnectionTests ( 'Test if requests constructed correctly' , function ( ) {
74
- it ( 'declareFunction' , async function ( ) {
74
+ it ( 'declareFunction' , function ( ) {
75
75
this . test . module . declareFunction ( 'test_fn' , ( ) => { } ) ;
76
76
const message = this . test . getLatestSent ( ) ;
77
77
expect ( message ) . excluding ( 'requestId' ) . to . deep . equal ( {
@@ -81,7 +81,7 @@ makeConnectionTests('Test if requests constructed correctly', function () {
81
81
} ) ;
82
82
83
83
84
- it ( 'functionCall with empty args' , async function ( ) {
84
+ it ( 'functionCall with empty args' , function ( ) {
85
85
this . test . module . functionCall ( 'module.test_fn' ) ;
86
86
const message = this . test . getLatestSent ( ) ;
87
87
expect ( message ) . excluding ( 'requestId' ) . to . deep . equal ( {
@@ -91,7 +91,7 @@ makeConnectionTests('Test if requests constructed correctly', function () {
91
91
} ) ;
92
92
} ) ;
93
93
94
- it ( 'functionCall with args' , async function ( ) {
94
+ it ( 'functionCall with args' , function ( ) {
95
95
this . test . module . functionCall ( 'module.test_fn' , {
96
96
a : 1 ,
97
97
b : 2
@@ -107,7 +107,7 @@ makeConnectionTests('Test if requests constructed correctly', function () {
107
107
} ) ;
108
108
} ) ;
109
109
110
- it ( 'registerHook' , async function ( ) {
110
+ it ( 'registerHook' , function ( ) {
111
111
this . test . module . registerHook ( 'test_hook' , ( ) => { } ) ;
112
112
const message = this . test . getLatestSent ( ) ;
113
113
expect ( message ) . excluding ( 'requestId' ) . to . deep . equal ( {
@@ -116,7 +116,7 @@ makeConnectionTests('Test if requests constructed correctly', function () {
116
116
} ) ;
117
117
} ) ;
118
118
119
- it ( 'triggerHook' , async function ( ) {
119
+ it ( 'triggerHook' , function ( ) {
120
120
this . test . module . triggerHook ( 'test_hook' ) ;
121
121
const message = this . test . getLatestSent ( ) ;
122
122
expect ( message ) . excluding ( 'requestId' ) . to . deep . equal ( {
0 commit comments