generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56cf9d0
commit b075b1c
Showing
28 changed files
with
7,525 additions
and
7,948 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const esbuild = require('esbuild'); | ||
const browserConfig = require('./esbuild-browser-config.cjs'); | ||
|
||
esbuild.build({ | ||
...browserConfig, | ||
format : 'esm', | ||
entryPoints : ['./tests/*.spec.*'], | ||
bundle : true, | ||
minify : false, | ||
outdir : 'tests/compiled', | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const playwrightLauncher = | ||
require('@web/test-runner-playwright').playwrightLauncher; | ||
|
||
/** | ||
* @type {import('@web/test-runner').TestRunnerConfig} | ||
*/ | ||
module.exports = { | ||
files : 'tests/compiled/**/*.spec.js', | ||
playwright : true, | ||
nodeResolve : true, | ||
browsers : [ | ||
playwrightLauncher({ | ||
product: 'chromium', | ||
}), | ||
playwrightLauncher({ | ||
product: 'firefox', | ||
}), | ||
], | ||
concurrentBrowsers : 1, | ||
testFramework : { | ||
config: { | ||
timeout: '15000', | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const esbuild = require('esbuild'); | ||
const browserConfig = require('./esbuild-browser-config.cjs'); | ||
|
||
esbuild.build({ | ||
...browserConfig, | ||
format : 'esm', | ||
entryPoints : ['./tests/*.spec.*'], | ||
bundle : true, | ||
minify : false, | ||
outdir : 'tests/compiled', | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const playwrightLauncher = | ||
require('@web/test-runner-playwright').playwrightLauncher; | ||
|
||
/** | ||
* @type {import('@web/test-runner').TestRunnerConfig} | ||
*/ | ||
module.exports = { | ||
files : 'tests/compiled/**/*.spec.js', | ||
playwright : true, | ||
nodeResolve : true, | ||
browsers : [ | ||
playwrightLauncher({ | ||
product: 'chromium', | ||
}), | ||
playwrightLauncher({ | ||
product: 'firefox', | ||
}), | ||
], | ||
concurrentBrowsers : 1, | ||
testFramework : { | ||
config: { | ||
timeout: '15000', | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const esbuild = require('esbuild'); | ||
const browserConfig = require('./esbuild-browser-config.cjs'); | ||
|
||
esbuild.build({ | ||
...browserConfig, | ||
format : 'esm', | ||
entryPoints : ['./tests/*.spec.*'], | ||
bundle : true, | ||
minify : false, | ||
outdir : 'tests/compiled', | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const playwrightLauncher = | ||
require('@web/test-runner-playwright').playwrightLauncher; | ||
|
||
/** | ||
* @type {import('@web/test-runner').TestRunnerConfig} | ||
*/ | ||
module.exports = { | ||
files : 'tests/compiled/**/*.spec.js', | ||
playwright : true, | ||
nodeResolve : true, | ||
browsers : [ | ||
playwrightLauncher({ | ||
product: 'chromium', | ||
}), | ||
playwrightLauncher({ | ||
product: 'firefox', | ||
}), | ||
], | ||
concurrentBrowsers : 1, | ||
testFramework : { | ||
config: { | ||
timeout: '15000', | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const esbuild = require('esbuild'); | ||
const browserConfig = require('./esbuild-browser-config.cjs'); | ||
|
||
esbuild.build({ | ||
...browserConfig, | ||
format : 'esm', | ||
entryPoints : ['./tests/*.spec.*'], | ||
bundle : true, | ||
minify : false, | ||
outdir : 'tests/compiled', | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const playwrightLauncher = | ||
require('@web/test-runner-playwright').playwrightLauncher; | ||
|
||
/** | ||
* @type {import('@web/test-runner').TestRunnerConfig} | ||
*/ | ||
module.exports = { | ||
files : 'tests/compiled/**/*.spec.js', | ||
playwright : true, | ||
nodeResolve : true, | ||
browsers : [ | ||
playwrightLauncher({ | ||
product: 'chromium', | ||
}), | ||
playwrightLauncher({ | ||
product: 'firefox', | ||
}), | ||
], | ||
concurrentBrowsers : 1, | ||
testFramework : { | ||
config: { | ||
timeout: '15000', | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const esbuild = require('esbuild'); | ||
const browserConfig = require('./esbuild-browser-config.cjs'); | ||
|
||
esbuild.build({ | ||
...browserConfig, | ||
format : 'esm', | ||
entryPoints : ['./tests/*.spec.*'], | ||
bundle : true, | ||
minify : false, | ||
outdir : 'tests/compiled', | ||
}); |
Oops, something went wrong.