Skip to content

Commit

Permalink
fix and update e2e recordings
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalshit27 committed Oct 4, 2024
1 parent f5bad0b commit d0d8b54
Show file tree
Hide file tree
Showing 5 changed files with 10,491 additions and 7,706 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ config*.json
.npmrc
yarn-error.log
*.pem
*.pub
*.pub
Makefile
5 changes: 1 addition & 4 deletions test/e2e/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,14 +140,11 @@ describe('#end-to-end deploy', function () {
const yaml = yamlLoad(fs.readFileSync(files[0]));

expect(yaml.emailTemplates.length).to.be.above(0);
expect(yaml.rules.length).to.be.above(0);
expect(yaml.pages.length).to.be.above(0);
expect(yaml.clients.length).to.be.above(0);
expect(yaml.databases.length).to.be.above(0);
expect(yaml.connections.length).to.be.above(0);
expect(yaml.roles.length).to.be.above(0);
expect(yaml.guardianFactorProviders.length).to.be.above(0);
expect(yaml.guardianFactorTemplates.length).to.be.above(0);
expect(yaml.actions.length).to.be.above(0);
expect(yaml.organizations.length).to.be.above(0);
expect(yaml.logStreams.length).to.be.above(0);
Expand Down Expand Up @@ -203,7 +200,7 @@ describe('#end-to-end deploy', function () {
const yaml = yamlLoad(fs.readFileSync(files[0]));

expect(yaml.rules).to.have.length(0);
expect(yaml.clients).to.have.length(2); //Accounting for Deploy CLI and Default App client
expect(yaml.clients).to.have.length(3); // Accounting for Deploy CLI and Default App client
expect(yaml.databases).to.have.length(1); // Default user database
expect(yaml.connections).to.have.length(0);
expect(yaml.roles).to.have.length(0);
Expand Down
Loading

0 comments on commit d0d8b54

Please sign in to comment.