feat: release a2 english (first three blocks) (#52600)

Co-authored-by: mot01 <tmondloch01@gmail.com>
Co-authored-by: moT01 <20648924+moT01@users.noreply.github.com>
This commit is contained in:
Oliver Eyton-Williams
2023-12-19 21:58:22 +01:00
committed by GitHub
parent de9a676936
commit 8f579cdec6
17 changed files with 113 additions and 98 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ describe('firstNotAuditedSuperBlock', () => {
expect(result).toBeNull();
});
it("should return a SuperBlock when language is 'chinese'", () => {
it.skip("should return a SuperBlock when language is 'chinese'", () => {
const result = getFirstNotAuditedSuperBlock({
language: Languages.Chinese,
showNewCurriculum: false,
+3 -2
View File
@@ -36,6 +36,7 @@ export enum SuperBlockStages {
FrontEnd,
Backend,
Python,
English,
Professional,
Extra,
Legacy,
@@ -68,6 +69,7 @@ export const superBlockOrder: SuperBlockOrder = {
SuperBlocks.MachineLearningPy,
SuperBlocks.CollegeAlgebraPy
],
[SuperBlockStages.English]: [SuperBlocks.A2English],
[SuperBlockStages.Professional]: [SuperBlocks.FoundationalCSharp],
[SuperBlockStages.Extra]: [
SuperBlocks.CodingInterviewPrep,
@@ -79,8 +81,7 @@ export const superBlockOrder: SuperBlockOrder = {
SuperBlocks.JsAlgoDataStructNew,
SuperBlocks.TheOdinProject,
SuperBlocks.ExampleCertification,
SuperBlocks.UpcomingPython,
SuperBlocks.A2English
SuperBlocks.UpcomingPython
]
};