Skip to content

Instantly share code, notes, and snippets.

@bennycode
Last active April 29, 2022 20:02
Show Gist options
  • Save bennycode/415e29f1e8f14e030aa126368da26343 to your computer and use it in GitHub Desktop.
Save bennycode/415e29f1e8f14e030aa126368da26343 to your computer and use it in GitHub Desktop.
Type Casting in TypeScript
import {Person, printAddress, MissingAddressError} from './printAddress';
describe('printAddress', () => {
it('throws an error when person does not have an address', () => {
const benny = {
age: 34,
} as Person;
expect(() => {
printAddress(benny);
}).toThrowError(MissingAddressError);
});
});
export type Person = {
age: number;
address: {
city: string;
}
}
export function printAddress(person: Person): void {
if (!person.address) {
throw new MissingAddressError();
}
console.log(person.address.city);
}
export class MissingAddressError extends Error {
constructor() {
super('Please enter an address.');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment