Skip to content

Commit

Permalink
[Autoloader] fix: fixed imports of node schema and loadFile calls
Browse files Browse the repository at this point in the history
  • Loading branch information
alekitto committed Nov 10, 2023
1 parent 2941058 commit abbc3d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/Loader/MetadataProcessorLoaderTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ const Fixtures = Jymfony.Component.Metadata.Fixtures;
const MetadataInterface = Jymfony.Contracts.Metadata.MetadataInterface;
const Argument = Jymfony.Component.Testing.Argument.Argument;
const Prophet = Jymfony.Component.Testing.Prophet;
const { ClassAnnot } = __jymfony.autoload._classLoader.loadFile(__dirname + '/../../fixtures/decorators/ClassAnnot.js', null);
const { NotHandledAnnotation } = __jymfony.autoload._classLoader.loadFile(__dirname + '/../../fixtures/decorators/NotHandledAnnotation.js', null);
const { MethodAnnotation1 } = __jymfony.autoload._classLoader.loadFile(__dirname + '/../../fixtures/decorators/MethodAnnotation1.js', null);
const { MethodAnnotation2 } = __jymfony.autoload._classLoader.loadFile(__dirname + '/../../fixtures/decorators/MethodAnnotation2.js', null);
const { ClassAnnot } = __jymfony.autoload._classLoader.loadFile(__dirname + '/../../fixtures/decorators/ClassAnnot.js');
const { NotHandledAnnotation } = __jymfony.autoload._classLoader.loadFile(__dirname + '/../../fixtures/decorators/NotHandledAnnotation.js');
const { MethodAnnotation1 } = __jymfony.autoload._classLoader.loadFile(__dirname + '/../../fixtures/decorators/MethodAnnotation1.js');
const { MethodAnnotation2 } = __jymfony.autoload._classLoader.loadFile(__dirname + '/../../fixtures/decorators/MethodAnnotation2.js');

describe('[Metadata] MetadataProcessorLoader', function () {
/**
Expand Down

0 comments on commit abbc3d2

Please sign in to comment.