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

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

26 Mar 2024 10:32AM UTC coverage: 96.959% (-0.03%) from 96.99%
8434520061

Pull #62

github

embbnux
chore: remove async
Pull Request #62: misc: pass token in header

219 of 235 branches covered (93.19%)

Branch coverage included in aggregate %.

19 of 19 new or added lines in 4 files covered. (100.0%)

642 of 653 relevant lines covered (98.32%)

14.58 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