-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
51e3945
commit f77a4df
Showing
17 changed files
with
67 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 0 additions & 18 deletions
18
apps/backend/src/stripe-to-superfluid/stripe-to-superfluid.controller.spec.ts
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
apps/backend/src/stripe-to-superfluid/stripe-to-superfluid.module.ts
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
apps/backend/src/stripe-to-superfluid/stripe-to-superfluid.service.spec.ts
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 18 additions & 0 deletions
18
apps/backend/src/superfluid-stripe-converter/superfluid-stripe-converter.controller.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { Test, TestingModule } from '@nestjs/testing'; | ||
import { SuperfluidStripeConverterController } from './superfluid-stripe-converter.controller'; | ||
|
||
describe('SuperfluidStripeConverterController', () => { | ||
let controller: SuperfluidStripeConverterController; | ||
|
||
beforeEach(async () => { | ||
const module: TestingModule = await Test.createTestingModule({ | ||
controllers: [SuperfluidStripeConverterController], | ||
}).compile(); | ||
|
||
controller = module.get<SuperfluidStripeConverterController>(SuperfluidStripeConverterController); | ||
}); | ||
|
||
it('should be defined', () => { | ||
expect(controller).toBeDefined(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
apps/backend/src/superfluid-stripe-converter/superfluid-stripe-converter.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { Module } from '@nestjs/common'; | ||
import { SuperfluidStripeConverterController } from './superfluid-stripe-converter.controller'; | ||
import { SuperfluidStripeConverterService } from './superfluid-stripe-converter.service'; | ||
import { registerStripeModule } from 'src/stripeModuleConfig'; | ||
|
||
@Module({ | ||
imports: [registerStripeModule()], | ||
controllers: [SuperfluidStripeConverterController], | ||
providers: [SuperfluidStripeConverterService], | ||
exports: [SuperfluidStripeConverterService], | ||
}) | ||
export class SuperfluidStripeConverterModule {} |
18 changes: 18 additions & 0 deletions
18
apps/backend/src/superfluid-stripe-converter/superfluid-stripe-converter.service.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { Test, TestingModule } from '@nestjs/testing'; | ||
import { SuperfluidStripeConverterService } from './superfluid-stripe-converter.service'; | ||
|
||
describe('SuperfluidStripeConverterService', () => { | ||
let service: SuperfluidStripeConverterService; | ||
|
||
beforeEach(async () => { | ||
const module: TestingModule = await Test.createTestingModule({ | ||
providers: [SuperfluidStripeConverterService], | ||
}).compile(); | ||
|
||
service = module.get<SuperfluidStripeConverterService>(SuperfluidStripeConverterService); | ||
}); | ||
|
||
it('should be defined', () => { | ||
expect(service).toBeDefined(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters