9 lines
185 B
JavaScript
9 lines
185 B
JavaScript
|
/**
|
||
|
* Teardown the environment
|
||
|
*/
|
||
|
const teardown = async (playwrightConfig) => {
|
||
|
// @NOTE: local environment should probably drop the db state here
|
||
|
};
|
||
|
|
||
|
module.exports = teardown;
|