chore: move server e2e tests to system-tests (#16354)

Co-authored-by: Brian Mann <brian.mann86@gmail.com>
Co-authored-by: Zach Bloomquist <git@chary.us>
Co-authored-by: Zach Bloomquist <github@chary.us>
This commit is contained in:
Jessica Sachs
2021-10-18 15:53:14 -04:00
committed by GitHub
parent 6c423e552b
commit a045e4f59a
752 changed files with 1556 additions and 802 deletions
@@ -0,0 +1 @@
{}
@@ -0,0 +1,3 @@
it('is true', () => {
expect(true).to.be.true
})
@@ -0,0 +1,9 @@
module.exports = (on) => {
on('file:preprocessor', () => {
return new Promise(() => {
setTimeout(() => {
throw new Error('Async error from plugins file')
}, 50)
})
})
}