migrate ui-components from flow to typescript

This commit is contained in:
Sebastian Sdorra
2019-10-20 16:59:02 +02:00
parent c41efbdc4f
commit f49e17a3a7
151 changed files with 2039 additions and 25265 deletions

View File

@@ -2,39 +2,39 @@ import {
BackendError,
UnauthorizedError,
createBackendError,
NotFoundError,
} from './errors';
NotFoundError
} from "./errors";
describe('test createBackendError', () => {
describe("test createBackendError", () => {
const earthNotFoundError = {
transactionId: '42t',
errorCode: '42e',
message: 'earth not found',
transactionId: "42t",
errorCode: "42e",
message: "earth not found",
context: [
{
type: 'planet',
id: 'earth',
},
type: "planet",
id: "earth"
}
],
violations: [],
violations: []
};
it('should return a default backend error', () => {
it("should return a default backend error", () => {
const err = createBackendError(earthNotFoundError, 500);
expect(err).toBeInstanceOf(BackendError);
expect(err.name).toBe('BackendError');
expect(err.name).toBe("BackendError");
});
// 403 is no backend error
xit('should return an unauthorized error for status code 403', () => {
xit("should return an unauthorized error for status code 403", () => {
const err = createBackendError(earthNotFoundError, 403);
expect(err).toBeInstanceOf(UnauthorizedError);
expect(err.name).toBe('UnauthorizedError');
expect(err.name).toBe("UnauthorizedError");
});
it('should return an not found error for status code 404', () => {
it("should return an not found error for status code 404", () => {
const err = createBackendError(earthNotFoundError, 404);
expect(err).toBeInstanceOf(NotFoundError);
expect(err.name).toBe('NotFoundError');
expect(err.name).toBe("NotFoundError");
});
});