Skip to content

Commit 0cff3bb

Browse files
committed
Update Dockerfile test to RC2 (OmniSharp#685)
1 parent bb21bb1 commit 0cff3bb

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

test/subgenerators.js

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -99,19 +99,11 @@ describe('Subgenerators without arguments tests', function() {
9999
util.fileCheck('should create tsconfig.json file', 'tsconfig.json');
100100
});
101101

102-
describe('aspnet:Dockerfile Mono-based', function() {
102+
describe('aspnet:Dockerfile dotnet', function() {
103103
var filename = 'Dockerfile';
104104
util.goCreate(filename);
105105
util.fileCheck('should create Dockerfile', filename);
106-
util.fileContentCheck(filename, 'Check the content for Mono-based image tag', /FROM microsoft\/aspnet:1\.0\.0-rc1-update1/);
107-
});
108-
109-
describe('aspnet:Dockerfile CoreCLR-based', function() {
110-
var arg = '--coreclr';
111-
var filename = 'Dockerfile';
112-
util.goCreateWithArgs(filename, [arg]);
113-
util.fileCheck('should create Dockerfile', filename);
114-
util.fileContentCheck(filename, 'Check the content for CoreCLR-based image tag', /FROM microsoft\/aspnet:1\.0\.0-rc1-update1-coreclr/);
106+
util.fileContentCheck(filename, 'Check the content for dotnet latest image tag', /FROM microsoft\/dotnet:latest/);
115107
});
116108

117109
describe('aspnet:nuget', function() {

0 commit comments

Comments
 (0)