Skip to content
Snippets Groups Projects
Commit 1563f789 authored by Eric Rosenbaum's avatar Eric Rosenbaum
Browse files

Add a test for the copy to new button

parent 5472f0a3
Branches
Tags
No related merge requests found
......@@ -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([]);
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment