kibana/x-pack/plugins/spaces/common/is_reserved_space.test.ts
2021-03-01 07:56:44 -05:00

36 lines
877 B
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import type { Space } from 'src/plugins/spaces_oss/common';
import { isReservedSpace } from './is_reserved_space';
test('it returns true for reserved spaces', () => {
const space: Space = {
id: '',
name: '',
disabledFeatures: [],
_reserved: true,
};
expect(isReservedSpace(space)).toEqual(true);
});
test('it returns false for non-reserved spaces', () => {
const space: Space = {
id: '',
name: '',
disabledFeatures: [],
};
expect(isReservedSpace(space)).toEqual(false);
});
test('it handles empty input', () => {
// @ts-ignore
expect(isReservedSpace()).toEqual(false);
});