blob: faadc3058abb06d1c7c9c9225f94ab6b5e7f9784 [file] [log] [blame]
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-get-temporal.plaindate.prototype.dayofweek
description: Custom calendar tests for dayOfWeek().
includes: [compareArray.js]
features: [Temporal]
---*/
let calls = 0;
class CustomCalendar extends Temporal.Calendar {
constructor() {
super("iso8601");
}
dayOfWeek(...args) {
++calls;
assert.compareArray(args, [pd], "dayOfWeek arguments");
return "7";
}
}
const calendar = new CustomCalendar();
const pd = new Temporal.PlainDate(1830, 8, 25, calendar);
const result = pd.dayOfWeek;
assert.sameValue(result, "7", "result");
assert.sameValue(calls, 1, "calls");