From f7df49048e6648b21b752e083e840464f7ddfa1b Mon Sep 17 00:00:00 2001 From: nitowa Date: Sun, 16 Oct 2022 03:46:02 +0200 Subject: [PATCH] 0.0.7 init order fix, add proper README --- test/InitializationTest/Test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/InitializationTest/Test.ts b/test/InitializationTest/Test.ts index 367d110..b7e9f65 100644 --- a/test/InitializationTest/Test.ts +++ b/test/InitializationTest/Test.ts @@ -14,6 +14,6 @@ describe('InitializationTest', () => { const testComp = Injector.resolve(TestComponent) const data = testComp.getData() - expect(data).to.eql([COMPONENT_A_VALUE, COMPONENT_B_VALUE, COMPONENT_C_VALUE]) + expect(data).to.eql([COMPONENT_C_VALUE, COMPONENT_B_VALUE, COMPONENT_A_VALUE]) }) }) \ No newline at end of file