View beforeach
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
beforeEach(async () => { | |
TestBed.configureTestingModule({ | |
// 親Container, 子Component | |
declarations: [SampleContainerComponent, SampleComponent], | |
}); | |
await TestBed.compileComponents(); | |
}); |
View fetch
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
fetch('https://hoge.com/users/1', {method: 'GET'}) |
View environement.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
import '../mocks/browser'; // add code | |
export const environment = { | |
production: false, | |
}; |
View browser.js
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
import { setupWorker, rest } from 'msw' | |
export const mocks = [ | |
rest.get('https://hoge.com/users/:user', (req, res, ctx) => { | |
const { user } = req.params | |
return res( | |
ctx.status(200), | |
ctx.json({ | |
name: `mocked-${user}`, |
View init
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
// 例(myorgは自分のアプリ名) | |
npx msw init apps/myorg/src |
View msw install
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
npm install msw --save-dev | |
# or | |
yarn add msw --dev |
View update config
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
// appNameは自分のアプリ名 | |
nx g nx-ng-esbuild:add-esbuild-config appName |
View install
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
yarn add -D nx-ng-esbuild |
View app.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
import { StoreModule } from '@ngrx/store'; | |
import { EffectsModule } from '@ngrx/effects'; | |
@NgModule({ | |
declarations: [ | |
StoreModule.forRoot({ LoginState: loginReducer}), // LoginStateはselectorで書いたキー | |
EffectsModule.forRoot([LoginEffects]), | |
], |
View login.effects.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
import { Injectable } from '@angular/core'; | |
import { Actions, createEffect, ofType } from '@ngrx/effects'; | |
import { map, switchMap } from 'rxjs/operators'; | |
import { doLogin, setLoginStateSuccess, setErrorMessage } from './login.action'; | |
import { LoginService } from '../../services/login/login.service'; | |
@Injectable() | |
export class LoginEffects { | |
setLoginStateSuccess$ = createEffect(() => |