fix: bust cache builds (#6847)

* chore: test cache build

* test turbo

* chore: intentionally break tests

* chore: fix test

* chore: rename test
This commit is contained in:
Riqwan Thamir
2024-03-27 17:46:32 +01:00
committed by GitHub
parent d4d1f9b2f2
commit 8d9af2df81
2 changed files with 5 additions and 4 deletions

View File

@@ -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",

View File

@@ -6,12 +6,15 @@
"outputs": ["!node_modules/**", "!src/**", "*/**"]
},
"test": {
"dependsOn": ["build"],
"outputs": []
},
"test:integration": {
"dependsOn": ["build"],
"outputs": []
},
"test:integration:chunk": {
"dependsOn": ["build"],
"outputs": []
}
},