You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test('AppFunctional is a functional component, Review how to build a functional component, including useState and passing props.',()=>{
44
+
test('AppFunctional is a functional component',()=>{
45
45
expect(
46
46
AppFunctional.prototype&&
47
47
AppFunctional.prototype.isReactComponent
48
48
).not.toBeTruthy()
49
49
})
50
-
test('AppClass is a class-based component, Review how to build a class-based component, such as using “extends”, and constructors',()=>{
50
+
test('AppClass is a class-based component',()=>{
51
51
expect(
52
52
AppClass.prototype&&
53
53
AppClass.prototype.isReactComponent
@@ -70,7 +70,7 @@ test('AppClass is a class-based component, Review how to build a class-based com
70
70
document.body.innerHTML=''
71
71
})
72
72
73
-
describe(`[A ${label}] Active Square, Review how to set a class name and use ternary statements, as well as how to set, manipulate, and read pieces of state. Also review how to handle user interaction.`,()=>{
73
+
describe(`[A ${label}] Active Square`,()=>{
74
74
test(`[A1 ${label}] Actions: none (Initial State of <App />)
75
75
Active Square should be index 4`,()=>{
76
76
testSquares(squares,4)
@@ -151,7 +151,7 @@ test('AppClass is a class-based component, Review how to build a class-based com
151
151
testSquares(squares,6)
152
152
})
153
153
})
154
-
describe(`[B ${label}] Coordinates Readout, Review how to set, manipulate, and display pieces of state, and handle user interaction.`,()=>{
154
+
describe(`[B ${label}] Coordinates Readout`,()=>{
155
155
test(`[B1] Actions: none (Initial State of <App />)
0 commit comments