happy-coders/fun-cli

View on GitHub
src/types/index.d.ts

Summary

Maintainability
A
0 mins
Test Coverage
/// <reference types="jest" />

declare namespace jest {
  interface Matchers<R> {
    /**
     * Checks file/dir exists defined on `expect` command exists.
     *
     * @param content - File content to assert
     */
    toHaveBeenCreated(content?: string): R;
  }
}