Skip to content

Commit

Permalink
Disabled source maps for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
swernerx committed Jul 2, 2017
1 parent 115ac2d commit a70caff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion __tests__/binary.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { transform } from "babel-core"
import buildPreset from "../src"

const options = buildPreset(null, { target: "binary" })
const options = buildPreset(null, { target: "binary", sourceMaps: false })

// Keep formatting for tests (to keep output/diffs readable)
options.minified = false
Expand Down
2 changes: 1 addition & 1 deletion __tests__/es2015.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { transform } from "babel-core"
import buildPreset from "../src"

const options = buildPreset(null, { modules: false, target: "es2015" })
const options = buildPreset(null, { modules: false, target: "es2015", sourceMaps: false })

// Keep formatting for tests (to keep output/diffs readable)
options.minified = false
Expand Down
2 changes: 1 addition & 1 deletion __tests__/ie11.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { transform } from "babel-core"
import buildPreset from "../src"

const options = buildPreset(null, { modules: false, target: { browsers: "ie 11" } })
const options = buildPreset(null, { modules: false, target: { browsers: "ie 11" }, sourceMaps: false })

// Keep formatting for tests (to keep output/diffs readable)
options.minified = false
Expand Down
2 changes: 1 addition & 1 deletion __tests__/node8.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { transform } from "babel-core"
import buildPreset from "../src"

const options = buildPreset(null, { modules: false, target: { node: "8.0.0" } })
const options = buildPreset(null, { modules: false, target: { node: "8.0.0" }, sourceMaps: false })

// Keep formatting for tests (to keep output/diffs readable)
options.minified = false
Expand Down

0 comments on commit a70caff

Please sign in to comment.