outputPath.test.js.snap 559 B

123456789101112131415161718192021222324252627282930
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`outputPath transforms correctly using "outputPath-0" data 1`] = `
  3. "module.exports = {
  4. output: {
  5. path: path.join(__dirname, 'dist')
  6. }
  7. }
  8. "
  9. `;
  10. exports[`outputPath transforms correctly using "outputPath-1" data 1`] = `
  11. "const path = require('path');
  12. module.exports = {
  13. output: {
  14. path: path.join(__dirname, 'dist')
  15. }
  16. }
  17. "
  18. `;
  19. exports[`outputPath transforms correctly using "outputPath-2" data 1`] = `
  20. "const p = require('path');
  21. module.exports = {
  22. output: {
  23. path: p.join(__dirname, 'dist')
  24. }
  25. }
  26. "
  27. `;