mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
refactor: stop curriculum tests depending on client (#65534)
This commit is contained in:
committed by
GitHub
parent
004e126906
commit
14cde3cdea
@@ -4,22 +4,22 @@ const _ = require('lodash');
|
||||
|
||||
const {
|
||||
getChallengesForLang
|
||||
} = require('../../curriculum/dist/get-challenges.js');
|
||||
} = require('@freecodecamp/curriculum/get-challenges');
|
||||
|
||||
const {
|
||||
getBlockCreator,
|
||||
getSuperblocks,
|
||||
superBlockToFilename
|
||||
} = require('../../curriculum/dist/build-curriculum.js');
|
||||
} = require('@freecodecamp/curriculum/build-curriculum');
|
||||
const {
|
||||
getContentDir,
|
||||
getBlockStructure,
|
||||
getSuperblockStructure
|
||||
} = require('../../curriculum/dist/file-handler.js');
|
||||
} = require('@freecodecamp/curriculum/file-handler');
|
||||
const {
|
||||
transformSuperBlock
|
||||
} = require('../../curriculum/dist/build-superblock.js');
|
||||
const { getSuperOrder } = require('../../curriculum/dist/super-order.js');
|
||||
} = require('@freecodecamp/curriculum/build-superblock');
|
||||
const { getSuperOrder } = require('@freecodecamp/curriculum/super-order');
|
||||
|
||||
const curriculumLocale = process.env.CURRICULUM_LOCALE || 'english';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user