Skip to content

Commit

Permalink
test: 🧪 pass error test
Browse files Browse the repository at this point in the history
  • Loading branch information
zhumeisongsong committed Nov 8, 2024
1 parent 3c663c8 commit 7ceb7ea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions libs/application-config/src/lib/applications-config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,19 @@ describe('Service Configurations', () => {

expect(gatewayConfig).toEqual({
host: 'localhost',
name: 'gateway',
port: '3333',
});

expect(userSubGraph).toEqual({
host: 'localhost',
name: 'user',
port: '15001',
});

expect(taskSubGraph).toEqual({
host: 'localhost',
name: 'task',
port: '15002',
});
});
Expand All @@ -51,16 +54,19 @@ describe('Service Configurations', () => {

expect(gatewayConfig).toEqual({
host: 'gateway.example.com',
name: 'gateway',
port: '4000',
});

expect(userSubGraph).toEqual({
host: 'user.example.com',
name: 'user',
port: '5000',
});

expect(taskSubGraph).toEqual({
host: 'task.example.com',
name: 'task',
port: '6000',
});
});
Expand Down

0 comments on commit 7ceb7ea

Please sign in to comment.