Skip to content

Instantly share code, notes, and snippets.

@elgervb
Created January 22, 2020 15:21
Show Gist options
  • Save elgervb/67d12bd025caad0388b12298b46cece5 to your computer and use it in GitHub Desktop.
Save elgervb/67d12bd025caad0388b12298b46cece5 to your computer and use it in GitHub Desktop.
testing / mocking TS
function getMock<T>(partial: Partial<T>): T {
return { ...partial } as T;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment