Skip to content

Commit 9b643a7

Browse files
authored
Merge pull request #173 from /issues/171
change URL smalruby.jp if logo clicked (closes #171)
2 parents 0dc971b + 7576119 commit 9b643a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/playground/render-gui.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import HashParserHOC from '../lib/hash-parser-hoc.jsx';
88
import TitledHOC from '../lib/titled-hoc.jsx';
99

1010
const onClickLogo = () => {
11-
window.location = 'https://smalruby.jp/smalruby3-gui';
11+
window.location = 'https://smalruby.jp';
1212
};
1313

1414
/*

test/integration/menu-bar.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ describe('Menu bar settings', () => {
6363
await clickXpath('//button[@title="Try It"]');
6464
await clickXpath('//img[@alt="Smalruby"]');
6565
const currentUrl = await driver.getCurrentUrl();
66-
await expect(currentUrl).toEqual('https://smalruby.jp/smalruby3-gui/');
66+
await expect(currentUrl).toEqual('https://smalruby.jp/');
6767
});
6868

6969
test('(GH#4064) Project name should be editable', async () => {

0 commit comments

Comments
 (0)