jest/e2e/test-environment/__tests__/environmentOptionsFromDocbl...

16 lines
446 B
JavaScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @jest-environment jsdom
* @jest-environment-options {"url": "https://jestjs.io/"}
*/
'use strict';
/*eslint-env browser */
test('use jsdom and set the URL in this test file', () => {
expect(globalThis.location.href).toBe('https://jestjs.io/');
});