metadata-based-explorer1
Version:
Box UI Elements
34 lines (29 loc) • 945 B
JavaScript
import { isBoxNote, getTypedFileId, getTypedFolderId } from '../file';
describe('util/file', () => {
describe('isBoxNote()', () => {
test('should false when file is not a box note', () => {
expect(
isBoxNote({
extension: 'foo',
}),
).toBe(false);
});
test('should true when file is a box note', () => {
expect(
isBoxNote({
extension: 'boxnote',
}),
).toBe(true);
});
});
describe('getTypedFileId()', () => {
test('should return typed file id correctly', () => {
expect(getTypedFileId('foo')).toBe('file_foo');
});
});
describe('getTypedFolderId()', () => {
test('should return typed folder id correctly', () => {
expect(getTypedFolderId('foo')).toBe('folder_foo');
});
});
});