mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-07 07:37:11 -04:00
Fixed tests.
This commit is contained in:
parent
b617ac4c58
commit
1f43bf599b
3 changed files with 5 additions and 6 deletions
0
src/bin/push-after-release.sh
Normal file → Executable file
0
src/bin/push-after-release.sh
Normal file → Executable file
|
@ -1,10 +1,9 @@
|
|||
'use strict';
|
||||
|
||||
// @ts-ignore
|
||||
import measured from 'measured-core';
|
||||
const measured = require('measured-core');
|
||||
|
||||
export default measured.createCollection();
|
||||
module.exports = measured.createCollection();
|
||||
|
||||
export const shutdown = async (hookName: string, context:any) => {
|
||||
module.exports.shutdown = async (hookName, context) => {
|
||||
module.exports.end();
|
||||
};
|
||||
};
|
|
@ -1,10 +1,10 @@
|
|||
'use strict';
|
||||
|
||||
const SecretRotator = require('../../../node/security/SecretRotator');
|
||||
const assert = require('assert').strict;
|
||||
const common = require('../common');
|
||||
const crypto = require('../../../node/security/crypto');
|
||||
const db = require('../../../node/db/DB');
|
||||
const SecretRotator = require("../../../node/security/SecretRotator").SecretRotator;
|
||||
|
||||
const logger = common.logger;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue