Skip to content

TokenPayId/5t4x

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

describe("A TypeScript and Kotlin developer who enjoys programming", () => {
  it("should be able to write code that works", () => {
    expect(true).toBe(true);
  });

  it("should be able to write code that doesn't work", () => {
    expect(false).toBe(true);
  });

  it("should be able to write code that works sometimes", () => {
    expect(Math.random() < 0.5).toBe(true);
  });

  it("should be able to write code that works in production but not in development", () => {
    expect(process.env.NODE_ENV).toBe("production");
  });

  it("should be able to write code that works in development but not in production", () => {
    expect(process.env.NODE_ENV).toBe("development");
  });

  it("should be able to write code that works on Windows but not on Mac", () => {
    expect(process.platform).toBe("win32");
  });

  it("should be able to write code that works on Mac but not on Windows", () => {
    expect(process.platform).toBe("darwin");
  });
});

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published