We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4a496e commit b61b3b7Copy full SHA for b61b3b7
test/helpers/ruby-helper.js
@@ -5,7 +5,7 @@ class RubyHelper {
5
bindAll(this, [
6
'fillInRubyProgram',
7
'currentRubyProgram',
8
- 'expectInterconvertBetweenCodeAndRuby',
+ 'expectInterconvertBetweenCodeAndRuby'
9
]);
10
11
this.seleniumHelper = seleniumHelper;
@@ -24,7 +24,7 @@ class RubyHelper {
24
fillInRubyProgram (code) {
25
code = code.replace(/\n/g, '\\n').replace(/'/g, "\\'");
26
return this.driver.executeScript(`ace.edit('ruby-editor').setValue('${code}');`);
27
- };
+ }
28
29
async expectInterconvertBetweenCodeAndRuby (code) {
30
await this.clickText('Ruby', '*[@role="tab"]');
0 commit comments