summaryrefslogtreecommitdiffstats
path: root/frontend/__tests__/SingleItem.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/__tests__/SingleItem.test.js')
-rw-r--r--frontend/__tests__/SingleItem.test.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/__tests__/SingleItem.test.js b/frontend/__tests__/SingleItem.test.js
index 8625e80..bd99ec1 100644
--- a/frontend/__tests__/SingleItem.test.js
+++ b/frontend/__tests__/SingleItem.test.js
@@ -27,11 +27,12 @@ describe('<SingleItem/>', () => {
);
// Check for loading state
expect(wrapper.text()).toContain('Loading...');
+ 1;
// wait for response and refresh
await wait(55);
wrapper.update();
- // Grab the peice we wnat
+ // Grab the piece we want
const Item = wrapper.find('[data-test="SingleItem"]');
// snapshot it!
expect(toJSON(Item)).toMatchSnapshot();