···1616 const code = await readFile(join(assetsDir, filename), 'utf-8')
17171818 // Verify that string literals from impure.js should be present in the bundle
1919- expect(code).toContain('THIS_SHOULD_REMAIN_IMPURE')
1919+ expect(code).toContain('THIS_SHOULD_REMAIN_COMPONENT')
2020+ expect(code).toContain('THIS_SHOULD_REMAIN_PAGE')
2021 expect(code).toContain('THIS_SHOULD_REMAIN_CONFIG')
21222223 // Verify that string literals from pure.js should not be present in the bundle
2323- expect(code).not.toContain('THIS_SHOULD_BE_REMOVED_PURE')
2424+ expect(code).not.toContain('THIS_SHOULD_BE_REMOVED_COMPONENT')
2525+ expect(code).not.toContain('THIS_SHOULD_BE_REMOVED_PAGE')
2426 expect(code).not.toContain('THIS_SHOULD_BE_REMOVED_CONFIG')
2527 expect(code).not.toContain('THIS_SHOULD_BE_REMOVED_HASH_STYLE')
2628