tests/shell: Import introspected libraries as modules

Since commit 5e93791708 tests scripts are loaded as modules,
so we can (and should) use "proper" imports.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2835>
This commit is contained in:
Florian Müllner 2023-07-11 14:57:41 +02:00
parent 04aaa4b67b
commit 0929b2a307
4 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
/* eslint camelcase: ["error", { properties: "never", allow: ["^script_"] }] */
const St = imports.gi.St;
import St from 'gi://St';
const Main = imports.ui.main;
const MessageTray = imports.ui.messageTray;

View File

@ -1,7 +1,7 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
/* eslint camelcase: ["error", { properties: "never", allow: ["^script_", "^malloc", "^glx", "^clutter"] }] */
const Clutter = imports.gi.Clutter;
import Clutter from 'gi://Clutter';
const Main = imports.ui.main;
const Scripting = imports.ui.scripting;

View File

@ -1,9 +1,9 @@
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
/* eslint camelcase: ["error", { properties: "never", allow: ["^script_"] }] */
const GLib = imports.gi.GLib;
const MetaTest = imports.gi.MetaTest;
const Shell = imports.gi.Shell;
import GLib from 'gi://GLib';
import MetaTest from 'gi://MetaTest';
import Shell from 'gi://Shell';
const Main = imports.ui.main;
const Scripting = imports.ui.scripting;

View File

@ -1,7 +1,7 @@
/* eslint camelcase: ["error", { properties: "never", allow: ["^script_", "^clutter"] }] */
const Clutter = imports.gi.Clutter;
const Gio = imports.gi.Gio;
const Shell = imports.gi.Shell;
import Clutter from 'gi://Clutter';
import Gio from 'gi://Gio';
import Shell from 'gi://Shell';
const Main = imports.ui.main;
const Scripting = imports.ui.scripting;