Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
call from dist when running spec
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed May 29, 2020
1 parent 3527d1e commit 32c4672
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion spec/default-file-icons-spec.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ fs = require 'fs-plus'
path = require 'path'
temp = require('temp').track()

fileIcons = require '../lib/default-file-icons'
fileIcons = require '../dist/default-file-icons'

describe 'DefaultFileIcons', ->
it 'defaults to text', ->
Expand Down
4 changes: 2 additions & 2 deletions spec/file-icons-spec.coffee
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DefaultFileIcons = require '../lib/default-file-icons'
getIconServices = require '../lib/get-icon-services'
DefaultFileIcons = require '../dist/default-file-icons'
getIconServices = require '../dist/get-icon-services'
{Disposable} = require 'atom'

describe 'IconServices', ->
Expand Down
2 changes: 1 addition & 1 deletion spec/helpers-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const {it, fit, ffit, beforeEach, afterEach} = require('./async-spec-helpers') /

const path = require('path')

const helpers = require('../lib/helpers')
const helpers = require('../dist/helpers')

describe('Helpers', () => {
describe('repoForPath', () => {
Expand Down
2 changes: 1 addition & 1 deletion spec/tree-view-package-spec.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ path = require 'path'
temp = require('temp').track()
os = require 'os'
{remote, shell} = require 'electron'
Directory = require '../lib/directory'
Directory = require '../dist/directory'
eventHelpers = require "./event-helpers"

waitForPackageActivation = ->
Expand Down
2 changes: 1 addition & 1 deletion spec/tree-view-spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const TreeView = require('../lib/tree-view')
const TreeView = require('../dist/tree-view')

describe('TreeView', () => {
describe('serialization', () => {
Expand Down

0 comments on commit 32c4672

Please sign in to comment.