Browse Source

0.0.7 init order fix, add proper README

master
nitowa 1 year ago
parent
commit
f7df49048e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      test/InitializationTest/Test.ts

+ 1
- 1
test/InitializationTest/Test.ts View File

@@ -14,6 +14,6 @@ describe('InitializationTest', () => {
14 14
         const testComp = Injector.resolve(TestComponent)
15 15
         const data = testComp.getData()
16 16
 
17
-        expect(data).to.eql([COMPONENT_A_VALUE, COMPONENT_B_VALUE, COMPONENT_C_VALUE])
17
+        expect(data).to.eql([COMPONENT_C_VALUE, COMPONENT_B_VALUE, COMPONENT_A_VALUE])
18 18
     })
19 19
 })

Loading…
Cancel
Save