@514labs/moose-lib 0.6.239-ci-1-g4a0cac87 → 0.6.239-ci-1-ga99426cc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2232,7 +2232,7 @@ var SqlResource = class {
2232
2232
  */
2233
2233
  constructor(name, setup, teardown, options) {
2234
2234
  const sqlResources = getMooseInternal().sqlResources;
2235
- if (sqlResources.has(name)) {
2235
+ if (!isClientOnlyMode && sqlResources.has(name)) {
2236
2236
  throw new Error(`SqlResource with name ${name} already exists`);
2237
2237
  }
2238
2238
  sqlResources.set(name, this);