This commit is contained in:
Keith Cirkel 2022-11-22 10:32:18 +00:00
Родитель 7c1258cf45
Коммит 69e7ed5d31
Не найден ключ, соответствующий данной подписи
2 изменённых файлов: 11 добавлений и 9 удалений

Просмотреть файл

@ -7,7 +7,9 @@
"plugin:github/typescript"
],
"rules": {
"github/no-then": "off"
"github/no-then": "off",
"import/extensions": ["error", "always"],
"import/no-unresolved": ["off"]
},
"overrides": [
{

Просмотреть файл

@ -243,13 +243,13 @@ suite('include-fragment-element', function () {
} catch (e) {
assert.ok(e)
} finally {
let data
let data2
try {
data = await el.data
data2 = await el.data
} catch {
data = null
data2 = null
}
assert.ok(data !== 42)
assert.ok(data2 !== 42)
}
})
@ -267,13 +267,13 @@ suite('include-fragment-element', function () {
} catch (e) {
assert.ok(e)
} finally {
let data
let data2
try {
data = await el.data
data2 = await el.data
} catch {
data = null
data2 = null
}
assert.ok(data !== undefined)
assert.ok(data2 !== undefined)
}
})