diff --git a/test/integration/sounds.test.js b/test/integration/sounds.test.js index f511b91059a6a025d27e4eb479d3982564331bcf..c8cd343cdb31d8c7d06e96ae4fbc89c4ace32b16 100644 --- a/test/integration/sounds.test.js +++ b/test/integration/sounds.test.js @@ -131,4 +131,14 @@ describe('Working with sounds', () => { const logs = await getLogs(); await expect(logs).toEqual([]); }); + + test('Copy to new button adds a new sound', async () => { + await loadUri(uri); + await clickText('Sounds'); + await clickText('Copy to New', scope.soundsTab); + await clickText('Meow2', scope.soundsTab); + + const logs = await getLogs(); + await expect(logs).toEqual([]); + }); });