fix logic error in test

This commit is contained in:
Jake McDermott
2018-07-25 17:46:24 -04:00
parent 5586b5c645
commit 404950104b

View File

@@ -1,4 +1,8 @@
import { getInventory, getInventoryNoSource } from '../fixtures'; import {
getInventory,
getInventoryNoSource,
getInventorySource,
} from '../fixtures';
let data; let data;
@@ -7,6 +11,7 @@ module.exports = {
const resources = [ const resources = [
getInventory('test-actions'), getInventory('test-actions'),
getInventoryNoSource('test-actions'), getInventoryNoSource('test-actions'),
getInventorySource('test-actions'),
]; ];
Promise.all(resources) Promise.all(resources)