aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlpromise/data/promise-resolve-function-length.qml
blob: 46700fe77e2b1c2712aec560256ef72dccad1feb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
import QtQuick 2.0

QtObject {
    property var resolveFunction
    property var promise: new Promise(function(resolve, reject) {
                             resolveFunction = resolve
                          })

    property bool wasTestSuccessful: (typeof resolveFunction === "function" &&
                                      typeof resolveFunction.length !== "undefined" &&
                                      resolveFunction.length === 1)

    Component.onCompleted: {
        // TODO: Function length field should be NotWritabel & NotEnumerable & Configurable
        console.log(Object.getOwnPropertyDescriptor(resolveFunction, "length").configurable)
    }
}