Skip to content

Commit bd55d5c

Browse files
Add exercises with type-tests (#1520)
* Bump packages * Sync * Add mini test runner * Add basics exericse * Fix author field * Add exercise to config.json * Format files * Regenerate locks * Seed with content from JavaScript * Fix package name * Add TypeScript specific content * They see me wip, they see me nae nae * Use admonitions
1 parent 475ea7f commit bd55d5c

File tree

326 files changed

+9605
-2472
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

326 files changed

+9605
-2472
lines changed

common/.meta/test-runner.mjs

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
import { execSync } from 'node:child_process'
2+
// Experimental: import config from './config.json' with { type: 'json' }
3+
4+
import { readFileSync } from 'node:fs'
5+
import { exit } from 'node:process'
6+
7+
/** @type {import('./config.json') } */
8+
const config = JSON.parse(
9+
readFileSync(new URL('./config.json', import.meta.url))
10+
)
11+
12+
const jest = !config.custom || config.custom['flag.tests.jest']
13+
const tstyche = config.custom?.['flag.tests.tstyche']
14+
15+
console.log(
16+
`[tests] tsc: ✅, tstyche: ${tstyche ? '✅' : '❌'}, jest: ${jest ? '✅' : '❌'}, `
17+
)
18+
19+
console.log('[tests] tsc (compile)')
20+
21+
try {
22+
execSync('corepack yarn lint:types', {
23+
stdio: 'inherit',
24+
cwd: process.cwd(),
25+
})
26+
} catch {
27+
exit(-1)
28+
}
29+
30+
if (tstyche) {
31+
console.log('[tests] tstyche (type tests)')
32+
33+
try {
34+
execSync('corepack yarn test:types', {
35+
stdio: 'inherit',
36+
cwd: process.cwd(),
37+
})
38+
} catch {
39+
exit(-2)
40+
}
41+
}
42+
43+
if (jest) {
44+
console.log('[tests] tstyche (implementation tests)')
45+
46+
try {
47+
execSync('corepack yarn test:implementation', {
48+
stdio: 'inherit',
49+
cwd: process.cwd(),
50+
})
51+
} catch {
52+
exit(-3)
53+
}
54+
}

common/package.json

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,23 @@
1717
},
1818
"devDependencies": {
1919
"@exercism/babel-preset-typescript": "^0.5.0",
20-
"@exercism/eslint-config-typescript": "^0.7.0",
20+
"@exercism/eslint-config-typescript": "^0.7.1",
2121
"@jest/globals": "^29.7.0",
22-
"@types/node": "~22.0.0",
22+
"@types/node": "~22.0.2",
2323
"babel-jest": "^29.7.0",
2424
"core-js": "~3.37.1",
2525
"eslint": "^9.8.0",
2626
"expect": "^29.7.0",
2727
"jest": "^29.7.0",
2828
"prettier": "^3.3.3",
29+
"tstyche": "^2.1.1",
2930
"typescript": "~5.5.4",
30-
"typescript-eslint": "^7.17.0"
31+
"typescript-eslint": "^7.18.0"
3132
},
3233
"scripts": {
33-
"test": "corepack yarn lint:types && jest --no-cache",
34+
"test": "corepack yarn node .meta/test-runner.mjs",
35+
"test:types": "corepack yarn tstyche",
36+
"test:implementation": "corepack yarn jest --no-cache --passWithNoTests",
3437
"lint": "corepack yarn lint:types && corepack yarn lint:ci",
3538
"lint:types": "corepack yarn tsc --noEmit -p .",
3639
"lint:ci": "corepack yarn eslint . --ext .tsx,.ts"

common/tsconfig.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@
2727
// https://babeljs.io/docs/en/babel-plugin-transform-typescript/#caveats
2828
"isolatedModules": true
2929
},
30-
"include": ["*.ts", "*.tsx", ".meta/*.ts", ".meta/*.tsx"],
30+
"include": [
31+
"*.ts",
32+
"*.tsx",
33+
".meta/*.ts",
34+
".meta/*.tsx",
35+
"__typetests__/*.tst.ts"
36+
],
3137
"exclude": ["node_modules"]
3238
}

0 commit comments

Comments
 (0)