1
0
Fork 0
gnome-shell/subprojects/jasmine-gjs/test/importerSpec.js
Daniel Baumann 1fcdbd5df9
Adding upstream version 48.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 20:26:11 +02:00

11 lines
344 B
JavaScript

const Utils = imports.utils;
describe('Jasmine importer', function () {
it('hides Jasmine modules from the test code', function () {
expect(Object.keys(Utils)).not.toContain('indenter');
});
it("lets test code import modules named the same as Jasmine's", function () {
expect(Utils.add).toBeDefined();
});
});