1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-05 17:53:12 +02:00

fix: remove display name

This commit is contained in:
Fredrik Oseberg 2021-10-06 09:34:32 +02:00
parent 240786ea37
commit 5847298d38

View File

@ -163,14 +163,12 @@ test('Sorts environments by sort order', async () => {
const defaultEnvName = 'default';
await db.stores.environmentStore.create({
name: envOne,
displayName: 'Enable feature for environment',
type: 'production',
sortOrder: 0,
});
await db.stores.environmentStore.create({
name: envTwo,
displayName: 'Enable feature for environment',
type: 'production',
sortOrder: 500,
});
@ -209,14 +207,12 @@ test('Sorts environments correctly if sort order is equal', async () => {
await db.stores.environmentStore.create({
name: envOne,
displayName: 'Enable feature for environment',
type: 'production',
sortOrder: -5,
});
await db.stores.environmentStore.create({
name: envTwo,
displayName: 'Enable feature for environment',
type: 'production',
sortOrder: -5,
});