0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-24 22:46:02 -05:00

nit: adding comments to the test explaining how base is verified

This commit is contained in:
Tony Sullivan 2022-04-20 21:23:11 +02:00
parent a64f4fec32
commit 3b80f6fcf6

View file

@ -7,12 +7,7 @@ function addLeadingSlash(path) {
}
function removeBasePath(path) {
<<<<<<< HEAD
// `/subpath` is defined in the test fixture's Astro config
return path.replace('/subpath', '');
=======
return path.replace('/subpath', '')
>>>>>>> f72a3e59 (test: updating build test to expect the base path in links/scripts)
}
/**