diff --git a/packages/pricing/integration-tests/__tests__/services/pricing-module/price-list-rule.spec.ts b/packages/pricing/integration-tests/__tests__/services/pricing-module/price-list-rule.spec.ts index 8a114939d4513..7fa0639af6808 100644 --- a/packages/pricing/integration-tests/__tests__/services/pricing-module/price-list-rule.spec.ts +++ b/packages/pricing/integration-tests/__tests__/services/pricing-module/price-list-rule.spec.ts @@ -230,7 +230,7 @@ moduleIntegrationTestRunner({ }) describe("setPriceListRules", () => { - it("should add a priceListRule to a priceList", async () => { + it("should add a price list rule to a price list", async () => { await createRuleTypes(testManager, [ { id: "rule-type-3", @@ -247,9 +247,7 @@ moduleIntegrationTestRunner({ }) const [priceList] = await service.listPriceLists( - { - id: ["price-list-1"], - }, + { id: ["price-list-1"] }, { relations: [ "price_list_rules", diff --git a/turbo.json b/turbo.json index f63c2745a574a..2a6bccb5d0ae5 100644 --- a/turbo.json +++ b/turbo.json @@ -6,12 +6,15 @@ "outputs": ["!node_modules/**", "!src/**", "*/**"] }, "test": { + "dependsOn": ["build"], "outputs": [] }, "test:integration": { + "dependsOn": ["build"], "outputs": [] }, "test:integration:chunk": { + "dependsOn": ["build"], "outputs": [] } },