|
|
@ -2,12 +2,16 @@ const path = require('path'); |
|
|
|
const { promises: fs, constants: { F_OK } } = require('fs'); |
|
|
|
const { promises: fs, constants: { F_OK } } = require('fs'); |
|
|
|
const { expect } = require('chai'); |
|
|
|
const { expect } = require('chai'); |
|
|
|
|
|
|
|
|
|
|
|
const { pathUpdates, updateImportPaths } = require('../scripts/migrate-imports.js'); |
|
|
|
const { pathUpdates, updateImportPaths, getUpgradeablePath } = require('../scripts/migrate-imports.js'); |
|
|
|
|
|
|
|
|
|
|
|
describe('migrate-imports.js', function () { |
|
|
|
describe('migrate-imports.js', function () { |
|
|
|
it('every new path exists', async function () { |
|
|
|
it('every new path exists', async function () { |
|
|
|
for (const p of Object.values(pathUpdates)) { |
|
|
|
for (const p of Object.values(pathUpdates)) { |
|
|
|
|
|
|
|
try { |
|
|
|
await fs.access(path.join('contracts', p), F_OK); |
|
|
|
await fs.access(path.join('contracts', p), F_OK); |
|
|
|
|
|
|
|
} catch (e) { |
|
|
|
|
|
|
|
await fs.access(path.join('contracts', getUpgradeablePath), F_OK); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|