Skip to content

Commit

Permalink
Move node module file to root
Browse files Browse the repository at this point in the history
  • Loading branch information
dyladan committed Nov 20, 2023
1 parent bf30779 commit 4cbb635
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import { InstrumentationModuleFile } from '../../types';
import { InstrumentationModuleFile } from './types';
import { normalize } from 'path';

export class InstrumentationNodeModuleFile<T>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import * as sinon from 'sinon';
import * as path from 'path';
import { InstrumentationBase } from '../../src';
import { InstrumentationNodeModuleDefinition } from '../../src/instrumentationNodeModuleDefinition';
import { InstrumentationNodeModuleFile } from '../../src/platform/node/instrumentationNodeModuleFile';
import { InstrumentationNodeModuleFile } from '../../src/instrumentationNodeModuleFile';
import { InstrumentationModuleDefinition } from '../../src/types';

const MODULE_NAME = 'test-module';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import * as assert from 'assert';
import { normalize } from 'path';
import { InstrumentationNodeModuleFile } from '../../src/platform/node/instrumentationNodeModuleFile';
import { InstrumentationNodeModuleFile } from '../../src/instrumentationNodeModuleFile';

describe('InstrumentationNodeModuleFile', () => {
it('should convert path', () => {
Expand Down

0 comments on commit 4cbb635

Please sign in to comment.