Skip to content
Snippets Groups Projects
Commit a4af7adf authored by Ben Wheeler's avatar Ben Wheeler
Browse files

enforce max width of standard library items; took out test delays

parent c484ee59
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@
justify-content: flex-start;
flex-basis: 160px;
height: 160px;
max-width: 160px;
margin: $space;
padding: 1rem 1rem 0 1rem;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
......
......@@ -33,9 +33,7 @@ describe('Working with costumes', () => {
const el = await findByXpath("//input[@placeholder='Search']");
await el.sendKeys('abb');
await clickText('Abby-a'); // Should close the modal, then click the costumes in the selector
await new Promise(resolve => setTimeout(resolve, 5000));
await findByXpath("//input[@value='Abby-a']"); // Should show editor for new costume
await new Promise(resolve => setTimeout(resolve, 5000));
const logs = await getLogs();
await expect(logs).toEqual([]);
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment