We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32016de commit 706df76Copy full SHA for 706df76
1 file changed
tests/unit/test-config.mjs
@@ -76,8 +76,8 @@ test_TypicalReplyConfig_constructor.parameters = {
76
export function test_TypicalReplyConfig_constructor({ argument, expected }) {
77
const typicalReplyConfig = new TypicalReplyConfig(argument);
78
is(
79
- typicalReplyConfig,
80
- expected
+ expected,
+ typicalReplyConfig
81
);
82
}
83
@@ -261,7 +261,7 @@ test_ButtonConfig_constructor.parameters = {
261
export function test_ButtonConfig_constructor({ argument, expected }) {
262
const buttonConfig = new ButtonConfig(argument);
263
264
- buttonConfig,
265
+ buttonConfig
266
267
-}
+}
0 commit comments