Skip to content

Commit

Permalink
fix: bust cache builds (#6847)
Browse files Browse the repository at this point in the history
* chore: test cache build

* test turbo

* chore: intentionally break tests

* chore: fix test

* chore: rename test
  • Loading branch information
riqwan authored Mar 27, 2024
1 parent d4d1f9b commit 8d9af2d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -247,9 +247,7 @@ moduleIntegrationTestRunner({
})

const [priceList] = await service.listPriceLists(
{
id: ["price-list-1"],
},
{ id: ["price-list-1"] },
{
relations: [
"price_list_rules",
Expand Down
3 changes: 3 additions & 0 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@
"outputs": ["!node_modules/**", "!src/**", "*/**"]
},
"test": {
"dependsOn": ["build"],
"outputs": []
},
"test:integration": {
"dependsOn": ["build"],
"outputs": []
},
"test:integration:chunk": {
"dependsOn": ["build"],
"outputs": []
}
},
Expand Down

0 comments on commit 8d9af2d

Please sign in to comment.