box-ui-elements-mlh
Version:
21 lines (17 loc) • 598 B
JavaScript
import FileAccessStats from '../FileAccessStats';
let accessStats;
describe('api/FileAccessStats', () => {
beforeEach(() => {
accessStats = new FileAccessStats({});
});
describe('getUrl()', () => {
test('should throw when access stats api url without id', () => {
expect(() => {
accessStats.getUrl();
}).toThrow();
});
test('should return correct access stats api url with id', () => {
expect(accessStats.getUrl('foo')).toBe('https://api.box.com/2.0/file_access_stats/foo');
});
});
});