Remove test for old behaviour

This commit is contained in:
René Pfeuffer
2021-01-25 16:18:46 +01:00
parent 6b5781144e
commit e7d79835c6

View File

@@ -53,17 +53,6 @@ describe("devbuild tests", () => {
});
});
describe("createAttributesForTesting in non development mode", () => {
beforeAll(() => {
setStage("production");
});
it("should return undefined for non development", () => {
const attributes = createAttributesForTesting("123");
expect(attributes).toBeUndefined();
});
});
describe("createAttributesForTesting in development mode", () => {
beforeAll(() => {
setStage("development");