Skip to content

Commit

Permalink
Merge branch 'fix/module-register' of https://github.com/timfish/nft
Browse files Browse the repository at this point in the history
…into fix/module-register
  • Loading branch information
timfish committed Jul 3, 2024
2 parents 29956af + b458e71 commit 193900d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Documentation
# https://help.github.com/en/articles/about-code-owners

* @ijjk @styfle
* @ijjk @styfle @vercel/vercel-cli-admins
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ jobs:
with:
# we lock to 3.11 for a distutils requirement for node-gyp
python-version: '3.11'
- name: Prepare Install (if applicable)
run: node prepare-install.js
- name: Enable Corepack
run: corepack enable npm
- name: Install Dependencies
Expand Down
22 changes: 0 additions & 22 deletions prepare-install.js

This file was deleted.

21 changes: 20 additions & 1 deletion test/integration.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,26 @@ jest.setTimeout(200_000);

const integrationDir = `${__dirname}${path.sep}integration`;

for (const integrationTest of readdirSync(integrationDir)) {
const integrationTests = readdirSync(integrationDir);
const filteredTestsToRun = integrationTests.filter((testName) => {
const isWin = process.platform === 'win32';
// Filter the integration tests that will never work in Windows
if (
isWin &&
[
'argon2.js',
'highlights.js',
'hot-shots.js',
'loopback.js',
'playwright-core.js',
].includes(testName)
) {
return false;
}
return true;
});

for (const integrationTest of filteredTestsToRun) {
let currentIntegrationDir = integrationDir;

it(`should correctly trace and correctly execute ${integrationTest}`, async () => {
Expand Down

0 comments on commit 193900d

Please sign in to comment.