diff --git a/packages/wxt/e2e/tests/remote-code.test.ts b/packages/wxt/e2e/tests/remote-code.test.ts index 481a9e9c9..f4ac9f935 100644 --- a/packages/wxt/e2e/tests/remote-code.test.ts +++ b/packages/wxt/e2e/tests/remote-code.test.ts @@ -3,7 +3,7 @@ import { TestProject } from '../utils'; describe('Remote Code', () => { it('should download "url:*" modules and include them in the final bundle', async () => { - const url = 'https://code.jquery.com/jquery-3.7.1.slim.min.js'; + const url = 'https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js'; const project = new TestProject(); project.addFile( 'entrypoints/popup.ts', @@ -16,7 +16,7 @@ describe('Remote Code', () => { const output = await project.serializeFile('.output/chrome-mv3/popup.js'); expect(output).toContain( // Some text that will hopefully be in future versions of this script - 'jQuery v3.7.1', + 'lodash.com', ); expect(output).not.toContain(url); expect(