mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
tests: Fix missing call to done
callback
This commit is contained in:
parent
b164f9b431
commit
56f617060a
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ describe(__filename, function () {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
it(testObj.description, function (done) {
|
it(testObj.description, async function () {
|
||||||
const $ = cheerio.load(testObj.html); // Load HTML into Cheerio
|
const $ = cheerio.load(testObj.html); // Load HTML into Cheerio
|
||||||
const doc = $('body')[0]; // Creates a dom-like representation of HTML
|
const doc = $('body')[0]; // Creates a dom-like representation of HTML
|
||||||
// Create an empty attribute pool
|
// Create an empty attribute pool
|
||||||
|
|
Loading…
Reference in a new issue