Compare commits

...

1 Commits

Author SHA1 Message Date
Nicholas Cunningham f8ad0aeb9f fix(node): Broken E2E tests 2024-05-17 20:17:41 -06:00
2 changed files with 5 additions and 14 deletions
Generated
+5 -4
View File
@@ -482,8 +482,9 @@ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
[[package]]
name = "filedescriptor"
version = "0.8.3"
source = "git+https://github.com/cammisuli/wezterm?rev=b538ee29e1e89eeb4832fb35ae095564dce34c29#b538ee29e1e89eeb4832fb35ae095564dce34c29"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7199d965852c3bac31f779ef99cbb4537f80e952e2d6aa0ffeb30cce00f4f46e"
dependencies = [
"libc",
"thiserror",
@@ -1536,7 +1537,6 @@ dependencies = [
"ignore",
"ignore-files 2.0.0",
"itertools",
"mio",
"napi",
"napi-build",
"napi-derive",
@@ -1660,7 +1660,8 @@ dependencies = [
[[package]]
name = "portable-pty"
version = "0.8.1"
source = "git+https://github.com/cammisuli/wezterm?rev=b538ee29e1e89eeb4832fb35ae095564dce34c29#b538ee29e1e89eeb4832fb35ae095564dce34c29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "806ee80c2a03dbe1a9fb9534f8d19e4c0546b790cde8fd1fea9d6390644cb0be"
dependencies = [
"anyhow",
"bitflags 1.3.2",
-10
View File
@@ -137,16 +137,6 @@ xdescribe('Node Applications + webpack', () => {
await runE2eTests(nestApp);
}, 900_000);
it('should generate a Dockerfile', async () => {
const expressApp = uniq('expressapp');
runCLI(
`generate @nx/node:app ${expressApp} --framework=express --docker --no-interactive`
);
checkFilesExist(`apps/${expressApp}/Dockerfile`);
}, 300_000);
it('should support waitUntilTargets for serve target', async () => {
const nodeApp1 = uniq('nodeapp1');
const nodeApp2 = uniq('nodeapp2');