diff --git a/test/integration/sounds.test.js b/test/integration/sounds.test.js index 44b670dd72c51ccb74a7dc6477541df21bbb70c4..aa3790f9508c251438bec724f2f3f813fecaa440 100644 --- a/test/integration/sounds.test.js +++ b/test/integration/sounds.test.js @@ -25,7 +25,7 @@ describe('Working with sounds', () => { await driver.quit(); }); - test('Adding a sound', async () => { + test('Adding a sound through the library', async () => { await loadUri(uri); await clickXpath('//button[@title="tryit"]'); await clickText('Sounds'); @@ -63,6 +63,19 @@ describe('Working with sounds', () => { await expect(logs).toEqual([]); }); + test('Adding a sound by surprise button', async () => { + await loadUri(uri); + await clickXpath('//button[@title="tryit"]'); + await clickText('Sounds'); + const el = await findByXpath('//button[@aria-label="Choose a Sound"]'); + await driver.actions().mouseMove(el) + .perform(); + await driver.sleep(500); // Wait for thermometer menu to come up + await clickXpath('//button[@aria-label="Surprise"]'); + const logs = await getLogs(); + await expect(logs).toEqual([]); + }); + test('Duplicating a sound', async () => { await loadUri(uri); await clickXpath('//button[@title="tryit"]');