References #545 Default immutable builds to false

This commit is contained in:
Nick Cipollo
2025-09-01 12:47:09 -04:00
parent b12185d71f
commit 36bf8dd70f
4 changed files with 5 additions and 5 deletions

View File

@@ -201,9 +201,9 @@ describe("Inputs", () => {
})
describe("immutableCreate", () => {
it("returns true by default", function () {
it("returns false by default", function () {
mockGetInput.mockReturnValue("")
expect(inputs.immutableCreate).toBe(true)
expect(inputs.immutableCreate).toBe(false)
})
it("returns true when explicitly set", function () {