argument-string-time-separators.js (804B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2022 Igalia, S.L. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-temporal.plaindatetime.from 7 description: Time separator in string argument can vary 8 features: [Temporal] 9 includes: [temporalHelpers.js] 10 ---*/ 11 12 const tests = [ 13 ["1976-11-18T15:23", "uppercase T"], 14 ["1976-11-18t15:23", "lowercase T"], 15 ["1976-11-18 15:23", "space between date and time"], 16 ]; 17 18 tests.forEach(([arg, description]) => { 19 const result = Temporal.PlainDateTime.from(arg); 20 21 TemporalHelpers.assertPlainDateTime( 22 result, 23 1976, 11, "M11", 18, 15, 23, 0, 0, 0, 0, 24 `variant time separators (${description})` 25 ); 26 }); 27 28 reportCompare(0, 0);