test invalid negative durations objects

This commit is contained in:
Romulo Cintra 2022-06-30 15:30:41 +02:00 committed by Ms2ger
parent f6179a6eb6
commit 392f0049d7
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,22 @@
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-Intl.DurationFormat.prototype.format
description: format basic tests for invalid negative duration objects that should throw RangeError exception.
features: [Intl.DurationFormat]
---*/
const df = new Intl.DurationFormat();
assert.throws(RangeError, () => { df.format({
hours : -1,
minutes: 10
}), "Throws when mixing negative and positive values" });
assert.throws(RangeError, () => { df.format({
hours : 2,
minutes: -10
}), "Throws when mixing negative and positive values" });

View File

@ -0,0 +1,20 @@
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-Intl.DurationFormat.prototype.formatToParts
description: formatToParts basic tests for invalid negative duration objects that should throw RangeError exception.
features: [Intl.DurationFormat]
---*/
const df = new Intl.DurationFormat();
assert.throws(RangeError, () => { df.formatToParts({
hours : -1,
minutes: 10
}), "Throws when mixing negative and positive values" });
assert.throws(RangeError, () => { df.formatToParts({
hours : 2,
minutes: -10
}), "Throws when mixing negative and positive values" });