Julio Biason
3 years ago
13 changed files with 5417 additions and 0 deletions
@ -0,0 +1,12 @@ |
|||||||
|
!.meta |
||||||
|
|
||||||
|
# Protected or generated |
||||||
|
.git |
||||||
|
.vscode |
||||||
|
|
||||||
|
# When using npm |
||||||
|
node_modules/* |
||||||
|
|
||||||
|
# Configuration files |
||||||
|
babel.config.js |
||||||
|
jest.config.js |
@ -0,0 +1,23 @@ |
|||||||
|
{ |
||||||
|
"root": true, |
||||||
|
"parser": "@typescript-eslint/parser", |
||||||
|
"parserOptions": { |
||||||
|
"project": "./tsconfig.json", |
||||||
|
"ecmaFeatures": { |
||||||
|
"jsx": true |
||||||
|
}, |
||||||
|
"ecmaVersion": 2020, |
||||||
|
"sourceType": "module" |
||||||
|
}, |
||||||
|
"extends": "@exercism/eslint-config-typescript", |
||||||
|
"env": { |
||||||
|
"jest": true |
||||||
|
}, |
||||||
|
"overrides": [ |
||||||
|
{ |
||||||
|
"files": [".meta/proof.ci.ts", ".meta/exemplar.ts", "*.test.ts"], |
||||||
|
"excludedFiles": ["custom.test.ts"], |
||||||
|
"extends": "@exercism/eslint-config-typescript/maintainers" |
||||||
|
} |
||||||
|
] |
||||||
|
} |
@ -0,0 +1,11 @@ |
|||||||
|
{ |
||||||
|
"blurb": "Create a sentence of the form \"One for X, one for me.\"", |
||||||
|
"authors": ["CRivasGomez"], |
||||||
|
"contributors": ["masters3d", "SleeplessByte"], |
||||||
|
"files": { |
||||||
|
"solution": ["two-fer.ts"], |
||||||
|
"test": ["two-fer.test.ts"], |
||||||
|
"example": [".meta/proof.ci.ts"] |
||||||
|
}, |
||||||
|
"source_url": "https://github.com/exercism/problem-specifications/issues/757" |
||||||
|
} |
@ -0,0 +1 @@ |
|||||||
|
{"track":"typescript","exercise":"two-fer","id":"f072e7e2a1734ccb8f016db15de77124","url":"https://exercism.org/tracks/typescript/exercises/two-fer","handle":"JBiason","is_requester":true,"auto_approve":false} |
@ -0,0 +1,44 @@ |
|||||||
|
# Help |
||||||
|
|
||||||
|
## Running the tests |
||||||
|
|
||||||
|
Execute the tests with: |
||||||
|
|
||||||
|
```bash |
||||||
|
$ yarn test |
||||||
|
``` |
||||||
|
|
||||||
|
## Skipped tests |
||||||
|
|
||||||
|
In the test suites all tests but the first have been skipped. |
||||||
|
|
||||||
|
Once you get a test passing, you can enable the next one by changing `xit` to |
||||||
|
`it`. |
||||||
|
|
||||||
|
## Submitting your solution |
||||||
|
|
||||||
|
You can submit your solution using the `exercism submit two-fer.ts` command. |
||||||
|
This command will upload your solution to the Exercism website and print the solution page's URL. |
||||||
|
|
||||||
|
It's possible to submit an incomplete solution which allows you to: |
||||||
|
|
||||||
|
- See how others have completed the exercise |
||||||
|
- Request help from a mentor |
||||||
|
|
||||||
|
## Need to get help? |
||||||
|
|
||||||
|
If you'd like help solving the exercise, check the following pages: |
||||||
|
|
||||||
|
- The [TypeScript track's documentation](https://exercism.org/docs/tracks/typescript) |
||||||
|
- [Exercism's support channel on gitter](https://gitter.im/exercism/support) |
||||||
|
- The [Frequently Asked Questions](https://exercism.org/docs/using/faqs) |
||||||
|
|
||||||
|
Should those resources not suffice, you could submit your (incomplete) solution to request mentoring. |
||||||
|
|
||||||
|
To get help if you're having trouble, you can use one of the following resources: |
||||||
|
|
||||||
|
- [TypeScript QuickStart](https://www.typescriptlang.org/docs/handbook/release-notes/overview.html) |
||||||
|
- [ECMAScript 2015 Language Specification](https://www.ecma-international.org/wp-content/uploads/ECMA-262_6th_edition_june_2015.pdf) (pdf) |
||||||
|
- [Mozilla JavaScript Reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference) |
||||||
|
- [/r/typescript](https://www.reddit.com/r/typescript) is the TypeScript subreddit. |
||||||
|
- [StackOverflow](https://stackoverflow.com/questions/tagged/typescript) can be used to search for your problem and see if it has been answered already. You can also ask and answer questions. |
@ -0,0 +1,46 @@ |
|||||||
|
# Two Fer |
||||||
|
|
||||||
|
Welcome to Two Fer on Exercism's TypeScript Track. |
||||||
|
If you need help running the tests or submitting your code, check out `HELP.md`. |
||||||
|
|
||||||
|
## Instructions |
||||||
|
|
||||||
|
`Two-fer` or `2-fer` is short for two for one. One for you and one for me. |
||||||
|
|
||||||
|
Given a name, return a string with the message: |
||||||
|
|
||||||
|
```text |
||||||
|
One for name, one for me. |
||||||
|
``` |
||||||
|
|
||||||
|
Where "name" is the given name. |
||||||
|
|
||||||
|
However, if the name is missing, return the string: |
||||||
|
|
||||||
|
```text |
||||||
|
One for you, one for me. |
||||||
|
``` |
||||||
|
|
||||||
|
Here are some examples: |
||||||
|
|
||||||
|
| Name | String to return | |
||||||
|
| :----- | :-------------------------- | |
||||||
|
| Alice | One for Alice, one for me. | |
||||||
|
| Bob | One for Bob, one for me. | |
||||||
|
| | One for you, one for me. | |
||||||
|
| Zaphod | One for Zaphod, one for me. | |
||||||
|
|
||||||
|
## Source |
||||||
|
|
||||||
|
### Created by |
||||||
|
|
||||||
|
- @CRivasGomez |
||||||
|
|
||||||
|
### Contributed to by |
||||||
|
|
||||||
|
- @masters3d |
||||||
|
- @SleeplessByte |
||||||
|
|
||||||
|
### Based on |
||||||
|
|
||||||
|
https://github.com/exercism/problem-specifications/issues/757 |
@ -0,0 +1,20 @@ |
|||||||
|
module.exports = { |
||||||
|
presets: [ |
||||||
|
[ |
||||||
|
'@babel/preset-env', |
||||||
|
{ |
||||||
|
targets: { |
||||||
|
node: 'current', |
||||||
|
}, |
||||||
|
useBuiltIns: 'entry', |
||||||
|
corejs: '3.17', |
||||||
|
}, |
||||||
|
], |
||||||
|
'@babel/preset-typescript', |
||||||
|
], |
||||||
|
plugins: [ |
||||||
|
'@babel/proposal-class-properties', |
||||||
|
'@babel/proposal-object-rest-spread', |
||||||
|
'@babel/plugin-syntax-bigint', |
||||||
|
], |
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
module.exports = { |
||||||
|
verbose: true, |
||||||
|
projects: ['<rootDir>'], |
||||||
|
testMatch: [ |
||||||
|
'**/__tests__/**/*.[jt]s?(x)', |
||||||
|
'**/test/**/*.[jt]s?(x)', |
||||||
|
'**/?(*.)+(spec|test).[jt]s?(x)', |
||||||
|
], |
||||||
|
testPathIgnorePatterns: [ |
||||||
|
'/(?:production_)?node_modules/', |
||||||
|
'.d.ts$', |
||||||
|
'<rootDir>/test/fixtures', |
||||||
|
'<rootDir>/test/helpers', |
||||||
|
'__mocks__', |
||||||
|
], |
||||||
|
transform: { |
||||||
|
'^.+\\.[jt]sx?$': 'babel-jest', |
||||||
|
}, |
||||||
|
} |
@ -0,0 +1,33 @@ |
|||||||
|
{ |
||||||
|
"name": "@exercism/typescript-two-fer", |
||||||
|
"version": "1.0.0", |
||||||
|
"description": "Exercism exercises in Typescript.", |
||||||
|
"private": true, |
||||||
|
"repository": { |
||||||
|
"type": "git", |
||||||
|
"url": "https://github.com/exercism/typescript" |
||||||
|
}, |
||||||
|
"devDependencies": { |
||||||
|
"@babel/core": "^7.15.5", |
||||||
|
"@babel/plugin-proposal-class-properties": "^7.14.5", |
||||||
|
"@babel/plugin-proposal-object-rest-spread": "^7.14.7", |
||||||
|
"@babel/plugin-syntax-bigint": "^7.8.3", |
||||||
|
"@babel/preset-env": "^7.15.4", |
||||||
|
"@babel/preset-typescript": "^7.15.0", |
||||||
|
"@types/jest": "^26.0.24", |
||||||
|
"@types/node": "^14.17.14", |
||||||
|
"@exercism/eslint-config-typescript": "^0.3.0", |
||||||
|
"babel-jest": "^26.6.3", |
||||||
|
"core-js": "^3.17.2", |
||||||
|
"eslint": "^7.32.0", |
||||||
|
"eslint-plugin-import": "^2.24.2", |
||||||
|
"jest": "^26.6.3", |
||||||
|
"typescript": "^4.4.2" |
||||||
|
}, |
||||||
|
"scripts": { |
||||||
|
"test": "yarn lint:types && jest --no-cache", |
||||||
|
"lint": "yarn lint:types && yarn lint:ci", |
||||||
|
"lint:types": "yarn tsc --noEmit -p .", |
||||||
|
"lint:ci": "eslint . --ext .tsx,.ts" |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
{ |
||||||
|
"display": "Configuration for Node LTS", |
||||||
|
"compilerOptions": { |
||||||
|
"lib": ["es2020"], |
||||||
|
"module": "commonjs", |
||||||
|
"target": "es2020", |
||||||
|
|
||||||
|
"strict": true, |
||||||
|
"esModuleInterop": true, |
||||||
|
"skipLibCheck": true, |
||||||
|
"forceConsistentCasingInFileNames": true, |
||||||
|
|
||||||
|
// Because we'll be using babel |
||||||
|
// Ensure that Babel can safely transpile files in the TypeScript project |
||||||
|
"isolatedModules": true |
||||||
|
}, |
||||||
|
"include": ["*", ".meta/*"], |
||||||
|
"exclude": ["node_modules"] |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
import { twoFer } from './two-fer' |
||||||
|
|
||||||
|
describe('TwoFer', () => { |
||||||
|
it('no name given', () => { |
||||||
|
const expected = 'One for you, one for me.' |
||||||
|
expect(twoFer()).toEqual(expected) |
||||||
|
}) |
||||||
|
|
||||||
|
it('a name given', () => { |
||||||
|
const expected = 'One for Alice, one for me.' |
||||||
|
expect(twoFer('Alice')).toEqual(expected) |
||||||
|
}) |
||||||
|
|
||||||
|
it('another name given', () => { |
||||||
|
const expected = 'One for Bob, one for me.' |
||||||
|
expect(twoFer('Bob')).toEqual(expected) |
||||||
|
}) |
||||||
|
}) |
@ -0,0 +1,7 @@ |
|||||||
|
/** |
||||||
|
* This stub is provided to make it straightforward to get started. |
||||||
|
*/ |
||||||
|
|
||||||
|
export function twoFer(name="you"): string { |
||||||
|
return `One for ${name}, one for me.` |
||||||
|
} |
Loading…
Reference in new issue