0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Disabled stripping of test selectors in all builds

no issue

- we want to run e2e tests against production Ghost instances and having test selectors available means much less brittle tests
- only real impact from keeping the selectors is extra file size in production builds but that is minimal (~6KB gzipped at time of commit)
This commit is contained in:
Kevin Ansfield 2022-12-07 08:53:58 +00:00
parent 1a879f9550
commit df6de75c80

View file

@ -234,6 +234,9 @@ module.exports = function (defaults) {
})
]
}
},
'ember-test-selectors': {
strip: false
}
});