* feat: add subscription manager to handle subscription sharing * fix(services): add missing methods to the interface * fix(services): add subscription manager specs * feat(snjs): add subscriptions e2e tests * fix(snjs): add wait in subscription cancelling test * fix(snjs): checking for canceled invitations in tests * fix(snjs): add e2e test for restored limit of subscription invitations * chore(lint): fix linter issues
20 lines
377 B
JavaScript
20 lines
377 B
JavaScript
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
const base = require('../../node_modules/@standardnotes/config/src/jest.json');
|
|
|
|
module.exports = {
|
|
...base,
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: 'tsconfig.json',
|
|
},
|
|
},
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 9,
|
|
functions: 10,
|
|
lines: 17,
|
|
statements: 16
|
|
}
|
|
}
|
|
};
|