Files
lilishop-uniapp/pages/tabbar/user/my.contract.test.mjs
2026-06-17 16:45:36 +08:00

11 lines
475 B
JavaScript

import assert from 'node:assert/strict';
import { readFileSync } from 'node:fs';
import test from 'node:test';
const source = readFileSync(new URL('./my.vue', import.meta.url), 'utf8');
test('member center header background resolves under the H5 base path', () => {
assert.doesNotMatch(source, /background-image:\s*url\(["']\/static\/img\/main-bg\.png["']\)/);
assert.match(source, /background-image:\s*url\(["']\.\.\/\.\.\/\.\.\/static\/img\/main-bg\.png["']\)/);
});