hanneskaeufler/danger-plugin-mentor

View on GitHub
src/all_tips.test.ts

Summary

Maintainability
A
0 mins
Test Coverage
import AllTips from "./all_tips"

describe("AllTips", () => {
  it("returns all the tips", () => {
    const tips = AllTips()

    expect(tips.length).toBeGreaterThan(0)
  })
})