1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

fix: update author - Théo LUDWIG

This commit is contained in:
2023-07-02 17:28:54 +02:00
parent d772ed0345
commit 1c1c55088f
134 changed files with 142 additions and 139 deletions

View File

@ -13,7 +13,7 @@ import { cli } from '../../../cli.js'
import { isExistingPath } from '../../../utils/isExistingPath.js'
const input = ['generate', 'challenge']
const githubUser = 'Divlo'
const githubUser = 'theoludwig'
const challenge = 'aaaa-test-jest'
const inputChallenge = `--challenge=${challenge}`
const inputGitHubUser = `--github-user=${githubUser}`
@ -22,7 +22,10 @@ await tap.test('programming-challenges generate challenge', async (t) => {
t.beforeEach(() => {
fsMock(
{
[process.cwd()]: fsMock.load(process.cwd(), { recursive: true, lazy: true })
[process.cwd()]: fsMock.load(process.cwd(), {
recursive: true,
lazy: true
})
},
{ createCwd: false }
)

View File

@ -13,7 +13,7 @@ import { cli } from '../../../cli.js'
import { isExistingPath } from '../../../utils/isExistingPath.js'
const input = ['generate', 'solution']
const githubUser = 'Divlo'
const githubUser = 'theoludwig'
const challenge = 'hello-world'
const language = 'c'
const solution = 'new-solution'