2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-27 14:47:43 +03:00
Files
axios/test/specs/utils/kindOf.js
T
2025-11-12 08:16:59 +02:00

13 lines
309 B
JavaScript

import utils from '../../../lib/utils';
const {kindOf} = utils;
describe('utils::kindOf', function () {
it('should return object tag', function () {
expect(kindOf({})).toEqual('object');
// cached result
expect(kindOf({})).toEqual('object');
expect(kindOf([])).toEqual('array');
});
});