64

GitHub - rgehan/hacktoberfest-2k18-katas: Little challenges to up your Hacktober...

 5 years ago
source link: https://github.com/rgehan/hacktoberfest-2k18-katas
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

Hacktoberfest 2018 Code Challenges

The point of this repository is to allow anyone to start contributing on a public repository.

Installation

You first need to fork the repository, then go in the directory and run:

# Install the dependencies
yarn

How to participate

  1. Find an issue that is not assigned yet
  2. Implement it so that it passes all the tests (check with yarn test src/theFunction.test.js)
  3. Add a test case for a new function. You can use yarn generate to create the two new files.
  4. Create your Pull Request
  5. Create an issue for your new feature

Rules

  • Each PR should contain exactly 3 files: your implementation, and 2 files for a new kata. All pull requests that do not follow this rule will be closed immediately.
  • If you take too much time to complete an issue/PR, it will be closed and de-assigned from you
  • Make sure your implementation passes the previous tests before opening a Pull Request.
  • Do not use any npm package, it's no fun

Files

When using yarn generate, two files are created:

theFunction.js:

export const theFunction = () => {
  // TO IMPLEMENT IN ANOTHER PR
};

theFunction.test.js:

import { theFunction } from './theFunction';

describe('theFunction', () => {
  it('does something', () => {
    expect(true).toBeTruthy(); // TODO Your test instead
  });

  it('does something else', () => {
    expect(true).toBeTruthy(); // TODO Your test instead
  });
})

You only need to update the test file, the actual implementation will be done by someone else!


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK