Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip copy & copySync timestamp tests on 32-bit computers #450

Merged
merged 1 commit into from
Jun 27, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Skip copy & copySync timestamp tests on 32-bit computers
  • Loading branch information
RyanZim committed Jun 27, 2017
commit 5f888babe047dc8afe938fffdb05961501d0c577
6 changes: 5 additions & 1 deletion lib/copy-sync/__tests__/copy-sync-preserve-time.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ const copySync = require('../copy-sync')

/* global beforeEach, describe, it */

describe('copy', () => {
if (process.arch === 'ia32') console.warn('32 bit arch; skipping copySync timestamp tests')

const describeIf64 = process.arch === 'ia32' ? describe.skip : describe

describeIf64('copySync', () => {
let TEST_DIR

beforeEach(done => {
Expand Down
6 changes: 5 additions & 1 deletion lib/copy/__tests__/copy-preserve-time.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ const assert = require('assert')

/* global beforeEach, describe, it */

describe('copy', () => {
if (process.arch === 'ia32') console.warn('32 bit arch; skipping copy timestamp tests')

const describeIf64 = process.arch === 'ia32' ? describe.skip : describe

describeIf64('copy', () => {
let TEST_DIR

beforeEach(done => {
Expand Down