Browse Source

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

content-update
Louise Foussat 3 years ago
parent
commit
72f0d8a763
  1. 1
      .gitignore
  2. 4
      js/tests/tell-me-vip_test.mjs
  3. 4
      js/tests/tell-me-who_test.mjs
  4. 3
      js/tests/test.mjs

1
.gitignore diff.vendored

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

4
js/tests/tell-me-vip_test.mjs

@ -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' }],

4
js/tests/tell-me-who_test.mjs

@ -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',

3
js/tests/test.mjs

@ -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 {

Loading…
Cancel
Save