Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions packages/blockly/tests/browser/test/basic_block_test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,12 @@ suite('Basic block tests', function (done) {

// Setup Selenium for all of the tests
suiteSetup(async function () {
this.browser = await testSetup(
testFileLocations.PLAYGROUND + '?toolbox=test-blocks',
);
this.browser = await testSetup(testFileLocations.PLAYGROUND);
});

test('Drag three blocks into the workspace', async function () {
for (let i = 1; i <= 3; i++) {
await dragNthBlockFromFlyout(this.browser, 'Align', 0, 50, 50);
await dragNthBlockFromFlyout(this.browser, 'Logic', 0, 50, 50);
chai.assert.equal((await getAllBlocks(this.browser)).length, i);
}
});
Expand Down
4 changes: 2 additions & 2 deletions packages/blockly/tests/browser/test/toolbox_drag_test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -194,14 +194,14 @@ suite('Open toolbox categories', function () {
await openCategories(this.browser, basicCategories, screenDirection.RTL);
});

test('opening every toolbox category in the test toolbox in LTR', async function () {
test.skip('opening every toolbox category in the test toolbox in LTR', async function () {
this.browser = await testSetup(
testFileLocations.PLAYGROUND + '?toolbox=test-blocks',
);
await openCategories(this.browser, testCategories, screenDirection.LTR);
});

test('opening every toolbox category in the test toolbox in RTL', async function () {
test.skip('opening every toolbox category in the test toolbox in RTL', async function () {
this.browser = await testSetup(
testFileLocations.PLAYGROUND + '?toolbox=test-blocks&dir=rtl',
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ suite('Workspace comments', function () {
this.timeout(0);

suiteSetup(async function () {
this.browser = await testSetup(
testFileLocations.PLAYGROUND + '?toolbox=test-blocks',
);
this.browser = await testSetup(testFileLocations.PLAYGROUND);
});

teardown(async function () {
Expand Down
Loading