UNPKG

askui

Version:

Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on

8 lines (7 loc) 291 B
import { Base64ImageError } from './base-64-image-error'; export class Base64ImageStringError extends Base64ImageError { constructor(str, prefix) { super(`Can't create Base64Image instance from string:\n${str}\n\n` + `String should start with "${prefix}".`); } }