Skip to content

Commit 1acae78

Browse files
Merge branch 'jbpionnier-refactor_module_path'
2 parents 9e8eff0 + f01d600 commit 1acae78

50 files changed

Lines changed: 75 additions & 86 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

integration/graphql/e2e/graphql-async-class.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { INestApplication } from '@nestjs/common';
22
import { NestFactory } from '@nestjs/core';
33
import * as request from 'supertest';
4-
import { AsyncClassApplicationModule } from './../src/async-options-class.module';
4+
import { AsyncClassApplicationModule } from '../src/async-options-class.module';
55

66
describe('GraphQL (async class)', () => {
77
let app: INestApplication;

integration/graphql/e2e/graphql-async-existing.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { INestApplication } from '@nestjs/common';
22
import { NestFactory } from '@nestjs/core';
33
import * as request from 'supertest';
4-
import { AsyncExistingApplicationModule } from './../src/async-options-existing.module';
4+
import { AsyncExistingApplicationModule } from '../src/async-options-existing.module';
55

66
describe('GraphQL (async existing)', () => {
77
let app: INestApplication;

integration/graphql/e2e/graphql-async.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { INestApplication } from '@nestjs/common';
22
import { NestFactory } from '@nestjs/core';
33
import * as request from 'supertest';
4-
import { AsyncApplicationModule } from './../src/async-options.module';
4+
import { AsyncApplicationModule } from '../src/async-options.module';
55

66
describe('GraphQL (async configuration)', () => {
77
let app: INestApplication;

integration/graphql/e2e/graphql.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { INestApplication } from '@nestjs/common';
22
import { Test } from '@nestjs/testing';
33
import * as request from 'supertest';
4-
import { ApplicationModule } from './../src/app.module';
4+
import { ApplicationModule } from '../src/app.module';
55

66
describe('GraphQL', () => {
77
let app: INestApplication;

integration/hello-world/e2e/exceptions.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import * as request from 'supertest';
22
import { Test } from '@nestjs/testing';
33
import { INestApplication, HttpStatus } from '@nestjs/common';
4-
import { ApplicationModule } from './../src/app.module';
54
import { ErrorsController } from '../src/errors/errors.controller';
65

76
describe('Error messages', () => {

integration/hello-world/e2e/express-instance.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as express from 'express';
22
import * as request from 'supertest';
33
import { Test } from '@nestjs/testing';
44
import { INestApplication } from '@nestjs/common';
5-
import { ApplicationModule } from './../src/app.module';
5+
import { ApplicationModule } from '../src/app.module';
66

77
describe('Hello world (express instance)', () => {
88
let server;

integration/hello-world/e2e/fastify-adapter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { INestFastifyApplication } from '@nestjs/common/interfaces/nest-fastify-
33
import { FastifyAdapter } from '@nestjs/core/adapters/fastify-adapter';
44
import { Test } from '@nestjs/testing';
55
import { expect } from 'chai';
6-
import { ApplicationModule } from './../src/app.module';
6+
import { ApplicationModule } from '../src/app.module';
77

88
describe('Hello world (fastify adapter)', () => {
99
let app: INestApplication & INestFastifyApplication;

integration/hello-world/e2e/guards.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as request from 'supertest';
22
import { Test } from '@nestjs/testing';
33
import { INestApplication, Injectable, UnauthorizedException } from '@nestjs/common';
4-
import { ApplicationModule } from './../src/app.module';
4+
import { ApplicationModule } from '../src/app.module';
55
import { APP_GUARD } from '@nestjs/core';
66

77
@Injectable()

integration/hello-world/e2e/hello-world.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as request from 'supertest';
22
import { Test } from '@nestjs/testing';
33
import { INestApplication } from '@nestjs/common';
4-
import { ApplicationModule } from './../src/app.module';
4+
import { ApplicationModule } from '../src/app.module';
55

66
describe('Hello world (default adapter)', () => {
77
let server;

integration/hello-world/e2e/interceptors.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as request from 'supertest';
22
import { Test } from '@nestjs/testing';
33
import { INestApplication, Injectable } from '@nestjs/common';
4-
import { ApplicationModule } from './../src/app.module';
4+
import { ApplicationModule } from '../src/app.module';
55
import { APP_INTERCEPTOR } from '@nestjs/core';
66
import { of } from 'rxjs';
77
import { map } from 'rxjs/operators';

0 commit comments

Comments
 (0)