summaryrefslogtreecommitdiff
path: root/installed-tests/js/modules/dynamic.js
blob: 383ee7a01cafb53c72b111aae77fd766a9880cf6 (plain)
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2021 Evan Welsh

/* exported test */

async function test() {
    const {say} = await import('./say.js');

    return say('I did it!');
}