mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-23 23:49:43 -05:00
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:
@@ -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)
|
||||
})
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user