andculturecode-javascript-testing
Version:
Commonly used actors for automated testing javascript applications
28 lines (27 loc) • 548 B
TypeScript
/// <reference types="jest" />
declare const _default: {
defaults: {
headers: {
post: {};
put: {};
};
};
delete: jest.Mock<Promise<{
data: {};
}>, []>;
get: jest.Mock<Promise<{
data: {};
}>, []>;
interceptors: {
response: {
use: jest.Mock<any, any>;
};
};
post: jest.Mock<Promise<{
data: {};
}>, []>;
put: jest.Mock<Promise<{
data: {};
}>, []>;
};
export default _default;