fix upperFirst in tell-me-who and tell-me-vip

This commit is contained in:
Louise Foussat 2021-03-11 12:52:09 +00:00
parent cfaa8308ca
commit 72f0d8a763
4 changed files with 7 additions and 5 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
node_modules
rust/**/target/
js/soluss

View File

@ -58,8 +58,8 @@ tests.push(async ({ randStr, eq, ctx }) => {
return eq('', data)
})
tests.push(async ({ randStr, eq, ctx }) => {
const random = randStr()
tests.push(async ({ randStr, eq, ctx, upperFirst }) => {
const random = upperFirst(randStr())
const files = [
['Ubaid_Ballard.json', { answer: 'yes' }],
['Victoria_Chan.json', { answer: 'yes' }],

View File

@ -28,8 +28,8 @@ export const setup = async ({ path }) => {
return { tmpPath: dir, run, createFilesIn }
}
tests.push(async ({ eq, ctx, randStr }) => {
const random = randStr()
tests.push(async ({ eq, ctx, randStr, upperFirst }) => {
const random = upperFirst(randStr())
const fileNames = [
'Ubaid_Ballard.json',
'Victoria_Chan.json',

View File

@ -96,8 +96,9 @@ const runTests = async ({ url, path, code }) => {
max || (max = min, min = 0)
return Math.floor(Math.random() * (max - min) + min)
}
const upperFirst = (str) => str[0].toUpperCase() + str.slice(1)
const tools = { eq, fail, wait, code, path, randStr, between }
const tools = { eq, fail, wait, code, path, randStr, between, upperFirst }
tools.ctx = (await (setup && setup(tools))) || {}
for (const [i, t] of tests.entries()) {
try {