• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ringcentral / google-forms-notification-add-in / 7551583681

17 Jan 2024 05:42AM UTC coverage: 96.97%. Remained the same
7551583681

Pull #35

github

web-flow
chore(deps): bump ansi-regex from 3.0.0 to 5.0.1

Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 3.0.0 to 5.0.1.
- [Release notes](https://github.com/chalk/ansi-regex/releases)
- [Commits](https://github.com/chalk/ansi-regex/compare/v3.0.0...v5.0.1)

---
updated-dependencies:
- dependency-name: ansi-regex
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #35: chore(deps): bump ansi-regex from 3.0.0 to 5.0.1

223 of 239 branches covered (0.0%)

Branch coverage included in aggregate %.

641 of 652 relevant lines covered (98.31%)

14.5 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

83.33
/src/server/models/sequelize.js
1

2
const Sequelize = require('dynamo-sequelize');
5✔
3
const config = {
5✔
4
  define: {
5
    saveUnknown: true,
6
    timestamps: true,
7
    jsonAsObject: true,
8
  },
9
  logging: false,
10
  throughput: {
11
    read: process.env.DYNAMO_READ || 20,
10✔
12
    write: process.env.DYNAMO_WRITE || 10
10✔
13
  }
14
};
15

16
if (process.env.DIALECT === 'dynamodb') {
5!
17
  config.dialect = 'dynamo';
×
18
}
19

20
const sequelize = new Sequelize(
5✔
21
  process.env.DATABASE_URL,
22
  config
23
);
24
  
25
 
26

27
exports.sequelize = sequelize;
5✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc