neet/masto.js

View on GitHub
src/utils/noop.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { noop } from "./noop";

describe("noop", () => {
  it("should return undefined", () => {
    expect(noop()).toBeUndefined();
  });
});